This commit is contained in:
2025-12-02 18:08:29 +08:00
parent ee1a23c320
commit 8e6d6855e9
16 changed files with 4138 additions and 188 deletions

View 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>