2023-02-26 13:17:19 +08:00
|
|
|
<script setup>
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
2023-03-11 17:00:36 +08:00
|
|
|
<el-config-provider :locale="locale">
|
2023-02-26 13:17:19 +08:00
|
|
|
<RouterView />
|
2023-03-11 17:00:36 +08:00
|
|
|
</el-config-provider>
|
2023-02-26 13:17:19 +08:00
|
|
|
</template>
|
2023-03-11 17:00:36 +08:00
|
|
|
<script setup>
|
|
|
|
|
import { ElConfigProvider } from 'element-plus'
|
2023-02-26 13:17:19 +08:00
|
|
|
|
2023-03-11 17:00:36 +08:00
|
|
|
import zhCn from 'element-plus/dist/locale/zh-cn.mjs'
|
|
|
|
|
const locale= zhCn;
|
|
|
|
|
</script>
|
2023-02-26 13:17:19 +08:00
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
|
|
</style>
|