mirror of
https://github.com/FatttSnake/Pinnacle-OA.git
synced 2026-04-06 07:21:24 +08:00
20 lines
327 B
Vue
20 lines
327 B
Vue
<template>
|
|
<el-config-provider :locale="zhCn()">
|
|
<router-view></router-view>
|
|
</el-config-provider>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import zhCn from 'element-plus/dist/locale/zh-cn.mjs'
|
|
|
|
export default {
|
|
methods: {
|
|
zhCn() {
|
|
return zhCn
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped></style>
|