26 lines
487 B
Vue
26 lines
487 B
Vue
<!--
|
|
这是 KUNGalgame 通用的 Footer
|
|
-->
|
|
<script setup lang="ts"></script>
|
|
|
|
<template>
|
|
<!-- 版权描述,版本号 -->
|
|
<div class="footer">
|
|
<span
|
|
>Copyright © 2023 KUNGalgame<span> </span> All rights reserved | Version
|
|
0.7.0</span
|
|
>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
/* 版权描述,版本号 */
|
|
.footer {
|
|
/* 距离上面的距离 */
|
|
margin-top: 17px;
|
|
/* 文字间距 */
|
|
letter-spacing: 1px;
|
|
color: var(--kungalgame-font-color-3);
|
|
}
|
|
</style>
|