数字督察一体化平台-前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

13 lines
284 B

<template>
<el-config-provider :locale="elConfig.locale" :z-index="elConfig.zIndex" >
<router-view />
</el-config-provider>
</template>
<script setup>
import zhCn from 'element-plus/es/locale/lang/zh-cn'
const elConfig = {
zIndex: 3000,
locale: zhCn
}
</script>