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.
 
 
 
 
 

20 lines
372 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>
<style>
.el-scrollbar__bar.is-horizontal {
height: 14px !important;
}
</style>