2021-12-08 10:47:33 +08:00
|
|
|
<script setup lang="ts">
|
2021-12-30 17:25:51 +08:00
|
|
|
import { ElConfigProvider } from 'element-plus'
|
2021-12-30 16:03:02 +08:00
|
|
|
import { VConfigGlobal } from '@/components/ConfigGlobal'
|
2021-12-11 11:46:10 +08:00
|
|
|
import zhCn from 'element-plus/lib/locale/lang/zh-cn'
|
2021-12-08 10:47:33 +08:00
|
|
|
</script>
|
|
|
|
|
2021-12-11 11:46:10 +08:00
|
|
|
<template>
|
2021-12-30 16:03:02 +08:00
|
|
|
<VConfigGlobal>
|
|
|
|
<ElConfigProvider :locale="zhCn">
|
2021-12-30 17:25:51 +08:00
|
|
|
<RouterView />
|
2021-12-30 16:03:02 +08:00
|
|
|
</ElConfigProvider>
|
|
|
|
</VConfigGlobal>
|
2021-12-11 11:46:10 +08:00
|
|
|
</template>
|