This commit is contained in:
zk
2023-12-14 09:23:58 +08:00
parent 825d10fc35
commit d614f10bb5
25 changed files with 826 additions and 558 deletions
+12 -3
View File
@@ -1,6 +1,15 @@
<template>
<router-view />
<a-config-provider :locale="locle">
<router-view />
</a-config-provider>
</template>
<script setup lang="ts"></script>
<script setup lang="ts">
import zhCN from 'ant-design-vue/es/locale/zh_CN';
import dayjs from 'dayjs';
import 'dayjs/locale/zh-cn';
dayjs.locale('zh-cn');
const locle = zhCN;
</script>
<style lang="less" src="./assets/less/index.less"></style>
<style lang="less" scoped></style>
<style lang="less" scoped></style>