2021-05-28 00:32:34 +08:00
|
|
|
<template>
|
2021-08-13 17:27:02 +08:00
|
|
|
<el-config-provider :locale="locale">
|
2021-08-17 14:59:59 +08:00
|
|
|
<router-view />
|
2021-08-13 17:27:02 +08:00
|
|
|
</el-config-provider>
|
2021-05-28 00:32:34 +08:00
|
|
|
</template>
|
|
|
|
|
2021-08-13 17:27:02 +08:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { ElConfigProvider } from 'element-plus';
|
|
|
|
import locale from 'element-plus/lib/locale/lang/zh-cn';
|
|
|
|
</script>
|
2021-05-29 03:02:15 +08:00
|
|
|
<style></style>
|