samgis-lisa-on-cuda / static /src /components /PageFooterHyperlink.vue
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
231 Bytes
<template>
<a
:href="props.path"
class="underline"
target="_blank"
rel="noopener noreferrer"
>
<slot />
</a>
</template>
<script setup lang="ts">
const props = defineProps<{
path: string
}>()
</script>