generated from template/astro-simple-template
20 lines
368 B
Vue
20 lines
368 B
Vue
<!-- Foo.vue -->
|
|
|
|
<template>
|
|
<div class="fixed bottom-3 right-2 text-gray-300 font-light text-sm">
|
|
<a :href="link + basename">{{ link + basename }}</a>
|
|
</div>
|
|
</template>
|
|
<script setup lang="ts">
|
|
const props = defineProps({
|
|
link: {
|
|
type: String,
|
|
default: 'https://kevisual.cn',
|
|
},
|
|
basename: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
});
|
|
</script>
|