first commit

This commit is contained in:
2024-04-08 21:34:02 +08:00
commit a41a7f32ab
223 changed files with 44629 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
<template>
<div class="gi-footer">Copyright © 2022-{{ year }} ContiNew Admin</div>
</template>
<script lang="ts" setup>
import Dayjs from 'dayjs'
defineOptions({ name: 'GiFooter' })
const year = Dayjs(new Date()).format('YYYY')
</script>
<style lang="scss" scoped>
.gi-footer {
height: 50px;
font-size: 12px;
color: var(--color-text-3);
margin-top: 12px;
border-top: 1px dashed var(--color-neutral-3);
box-sizing: border-box;
display: flex;
justify-content: center;
align-items: center;
}
</style>