48 lines
1.2 KiB
Vue
48 lines
1.2 KiB
Vue
|
|
<script lang="ts" setup>
|
||
|
|
import { useSettingsStore } from '@/store/modules/settings'
|
||
|
|
|
||
|
|
const fullYear = new Date().getFullYear()
|
||
|
|
const settingsStore = useSettingsStore()
|
||
|
|
const { title } = storeToRefs(settingsStore)
|
||
|
|
|
||
|
|
// 国家法律法规要求显示备案号 实际项目请自行修改为自己的备案信息及域名
|
||
|
|
// const beianShow = ref(false)
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<footer class="vab-footer">
|
||
|
|
Copyright
|
||
|
|
<vab-icon icon="copyright-line" />
|
||
|
|
{{ fullYear }} {{ title }}
|
||
|
|
<!-- <a
|
||
|
|
v-if="beianShow"
|
||
|
|
class="beian"
|
||
|
|
href="https://beian.miit.gov.cn/#/Integrated/index"
|
||
|
|
target="_blank"
|
||
|
|
>
|
||
|
|
鲁ICP备2021002317号-1
|
||
|
|
</a> -->
|
||
|
|
</footer>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
.vab-footer {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
min-height: 55px;
|
||
|
|
padding: 0 #{$base-padding} 0 #{$base-padding};
|
||
|
|
color: rgba(0, 0, 0, 0.45);
|
||
|
|
background: var(--el-color-white);
|
||
|
|
border-top: 1px dashed #{$base-border-color};
|
||
|
|
|
||
|
|
i {
|
||
|
|
margin: 0 5px;
|
||
|
|
}
|
||
|
|
.beian {
|
||
|
|
margin-left: 5px;
|
||
|
|
user-select: none;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</style>
|