Files
mdt-docs/slides/components/MyFooter.vue
2025-12-02 18:08:29 +08:00

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>