mirror of
https://github.com/continew-org/continew-admin-ui.git
synced 2025-09-18 20:57:08 +08:00
first commit
This commit is contained in:
25
src/components/GiFooter/index.vue
Normal file
25
src/components/GiFooter/index.vue
Normal 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>
|
Reference in New Issue
Block a user