Spaces:
Sleeping
Sleeping
File size: 231 Bytes
0914710 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
<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>
|