12 lines
306 B
Vue
12 lines
306 B
Vue
|
<script setup lang="ts">
|
||
|
import { ElConfigProvider } from 'element-plus';
|
||
|
import { useAppStore } from '@/store/modules/app';
|
||
|
const appStore = useAppStore();
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<el-config-provider :locale="appStore.locale" :size="appStore.size">
|
||
|
<router-view />
|
||
|
</el-config-provider>
|
||
|
</template>
|