24 lines
399 B
Vue
24 lines
399 B
Vue
<script setup lang="ts">
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<footer class="f-c-c text-14 text-gray-500">
|
|
<p>
|
|
Copyright © 2023
|
|
<a
|
|
href="https://github.com/zclzone"
|
|
target="__blank"
|
|
class="transition"
|
|
hover="decoration-underline color-primary"
|
|
>
|
|
Ronnie Zhang(大脸怪)
|
|
</a>
|
|
</p>
|
|
</footer>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|