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.
|
<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> |