finish init again

This commit is contained in:
2025-06-18 09:26:56 +08:00
commit 29d5b6927d
57 changed files with 21760 additions and 0 deletions

13
src/App.vue Normal file
View File

@ -0,0 +1,13 @@
<template>
<a-config-provider :locale="zhCN">
<router-view/>
</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';
dayjs.locale('zh-cn');
</script>