UNIVPLMDataIntegration/Web/src/layout/footer/index.vue
2024-06-30 15:30:59 +08:00

30 lines
643 B
Vue

<template>
<div class="layout-footer mb5">
<div class="layout-footer-warp">
<div>{{ themeConfig.globalTitle }} {{ themeConfig.copyright }}</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>