mirror of
https://github.com/continew-org/continew-admin-ui.git
synced 2025-09-11 16:57:09 +08:00
26 lines
507 B
Vue
26 lines
507 B
Vue
<template>
|
|
<div class="gi-footer">{{ appStore.getCopyright() }}</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { useAppStore } from '@/stores'
|
|
|
|
const appStore = useAppStore()
|
|
|
|
defineOptions({ name: 'GiFooter' })
|
|
</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>
|