mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2024-11-01 14:10:27 +08:00
11 lines
241 B
Vue
11 lines
241 B
Vue
<template>
|
|
<el-config-provider :locale="zhCn">
|
|
<router-view />
|
|
</el-config-provider>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ElConfigProvider } from "element-plus";
|
|
import zhCn from "element-plus/dist/locale/zh-cn.mjs";
|
|
</script>
|