23 lines
461 B
Vue
23 lines
461 B
Vue
<template>
|
|
<a-config-provider :locale="zhCN">
|
|
<a-app>
|
|
<a-spin :spinning="false" style="z-index: 1001" :tip="''">
|
|
<router-view></router-view>
|
|
</a-spin>
|
|
</a-app>
|
|
</a-config-provider>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import zhCN from 'ant-design-vue/es/locale/zh_CN';
|
|
import dayjs from 'dayjs';
|
|
import 'dayjs/locale/zh-cn';
|
|
import {App as AApp} from 'ant-design-vue'
|
|
|
|
dayjs.locale('zh-cn');
|
|
|
|
</script>
|
|
|
|
<style scoped>
|
|
</style>
|