kun-galgame-vue/src/components/KUNGalgameFooter.vue

25 lines
445 B
Vue
Raw Normal View History

2023-04-20 12:01:38 +00:00
<!--
2023-05-31 02:53:27 +00:00
这是 KUNGalgame 通用的 Footer
2023-04-20 12:01:38 +00:00
-->
2023-04-20 09:38:03 +00:00
<script setup lang="ts"></script>
<template>
<!-- 版权描述,版本号 -->
2023-05-31 02:53:27 +00:00
<div class="footer">
2023-05-31 08:21:39 +00:00
<span
>Copyright © 2023 KUNgalgame<span> </span> All rights reserved | Version
0.01</span
>
2023-04-20 09:38:03 +00:00
</div>
</template>
<style scoped>
/* 版权描述,版本号 */
2023-05-31 02:53:27 +00:00
.footer {
2023-04-20 09:38:03 +00:00
/* 距离上面的距离 */
margin-top: 17px;
/* 文字间距 */
letter-spacing: 1px;
}
</style>