鞍钢鲅鱼圈能源管控系统前端代码
houzhongjian
2 天以前 af5495931308376949a92040151c4c6f46866c6b
提交 | 用户 | 时间
cb6cd2 1 <script lang="ts" setup>
H 2 import { useAppStore } from '@/store/modules/app'
3 import { useDesign } from '@/hooks/web/useDesign'
4
5 // eslint-disable-next-line vue/no-reserved-component-names
6 defineOptions({ name: 'Footer' })
7
8 const { getPrefixCls } = useDesign()
9
10 const prefixCls = getPrefixCls('footer')
11
12 const appStore = useAppStore()
13
14 const title = computed(() => appStore.getTitle)
af5495 15
H 16 // 添加当前年份计算属性
17 const currentYear = computed(() => new Date().getFullYear())
cb6cd2 18 </script>
H 19
20 <template>
21   <div
22     :class="prefixCls"
23     class="h-[var(--app-footer-height)] bg-[var(--app-content-bg-color)] text-center leading-[var(--app-footer-height)] text-[var(--el-text-color-placeholder)] dark:bg-[var(--el-bg-color)]"
24   >
af5495 25     <span class="text-14px">Copyright ©{{ currentYear }} {{ title }}</span>
cb6cd2 26   </div>
H 27 </template>