鞍钢鲅鱼圈能源管控系统前端代码
houzhongjian
2024-12-26 cb6cd26221d8bb2c4b1dca44a87332e9fe6f56ab
提交 | 用户 | 时间
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)
15 </script>
16
17 <template>
18   <div
19     :class="prefixCls"
20     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)]"
21   >
22     <span class="text-14px">Copyright ©2024-{{ title }}</span>
23   </div>
24 </template>