alessandro trinca tornidor
[feat] prepare entire docker build with nvidia GPU on hf space cloning https://huggingface.co/spaces/aletrn/samgis
0914710
raw
history blame
No virus
208 Bytes
<template>
<button class="inline-flex items-center p-2" @click="props.click">
<slot></slot>
</button>
</template>
<script setup lang="ts">
const props = defineProps<{
click: Function
}>()
</script>