28 lines
672 B
Vue
28 lines
672 B
Vue
|
<!--
|
||
|
* @Description:
|
||
|
* @Author: zenghua.wang
|
||
|
* @Date: 2024-01-24 18:54:01
|
||
|
* @LastEditors: zenghua.wang
|
||
|
* @LastEditTime: 2024-01-26 22:57:34
|
||
|
-->
|
||
|
<template>
|
||
|
<el-config-provider :size="size" :locale="zhCn">
|
||
|
<router-view />
|
||
|
</el-config-provider>
|
||
|
</template>
|
||
|
|
||
|
<script setup name="app">
|
||
|
import { computed } from 'vue';
|
||
|
import { useSettingStore } from '@/store/modules/setting';
|
||
|
// 配置element中文
|
||
|
import zhCn from 'element-plus/es/locale/lang/zh-cn';
|
||
|
|
||
|
const SettingStore = useSettingStore();
|
||
|
// 配置全局组件大小
|
||
|
const size = computed(() => SettingStore.themeConfig.globalComSize);
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss">
|
||
|
@import './styles/style.scss';
|
||
|
</style>
|