27 lines
552 B
Vue
27 lines
552 B
Vue
|
<template>
|
||
|
<el-config-provider :locale="currentLocale">
|
||
|
<router-view />
|
||
|
<ReDialog />
|
||
|
</el-config-provider>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import { defineComponent } from "vue";
|
||
|
import { ElConfigProvider } from "element-plus";
|
||
|
import { ReDialog } from "@/components/ReDialog";
|
||
|
import zhCn from "element-plus/es/locale/lang/zh-cn";
|
||
|
|
||
|
export default defineComponent({
|
||
|
name: "app",
|
||
|
components: {
|
||
|
[ElConfigProvider.name]: ElConfigProvider,
|
||
|
ReDialog
|
||
|
},
|
||
|
computed: {
|
||
|
currentLocale() {
|
||
|
return zhCn;
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
</script>
|