samgis / static /src /components /PageFooterHyperlink.vue
aletrn's picture
[feat] add working static frontend
aa983ad
raw
history blame
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>