35 lines
707 B
Vue
35 lines
707 B
Vue
<template>
|
|
<el-config-provider :locale="locale" size="small">
|
|
<router-view />
|
|
</el-config-provider>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { computed, ref, watch } from 'vue';
|
|
import { ElConfigProvider } from 'element-plus';
|
|
|
|
import useStore from '@/store';
|
|
|
|
// 导入 Element Plus 语言包
|
|
import zhCn from 'element-plus/es/locale/lang/zh-cn';
|
|
import en from 'element-plus/es/locale/lang/en';
|
|
|
|
const { app } = useStore();
|
|
|
|
const language = computed(() => app.language);
|
|
const size: any = computed(() => app.size);
|
|
|
|
const locale = ref();
|
|
|
|
watch(
|
|
language,
|
|
value => {
|
|
locale.value = value == 'en' ? en : zhCn;
|
|
},
|
|
{
|
|
// 初始化立即执行
|
|
immediate: true
|
|
}
|
|
);
|
|
</script>
|