移动系统liao
3 天以前 0a4e5fc3bdfca328feb574f1564011abf2a35b76
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<template>
    <div class="layout-footer pb15">
        <div class="layout-footer-warp">
            <!-- <div>{{ themeConfig.globalTitle }}</div> -->
            <div class="mt5">{{ themeConfig.copyright }} {{ themeConfig.globalTitle }}</div>
        </div>
    </div>
</template>
 
<script setup lang="ts" name="layoutFooter">
import { storeToRefs } from 'pinia';
import { useThemeConfig } from '/@/stores/themeConfig';
 
const storesThemeConfig = useThemeConfig();
const { themeConfig } = storeToRefs(storesThemeConfig);
</script>
 
<style scoped lang="scss">
.layout-footer {
    width: 100%;
    display: flex;
 
    &-warp {
        margin: auto;
        color: var(--el-text-color-secondary);
        text-align: center;
        animation: error-num 0.3s ease;
    }
}
</style>