generated from template/astro-simple-template
init
This commit is contained in:
19
slides/components/MyFooter.vue
Normal file
19
slides/components/MyFooter.vue
Normal file
@@ -0,0 +1,19 @@
|
||||
<!-- 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>
|
||||
Reference in New Issue
Block a user