first commit

This commit is contained in:
super
2025-12-28 22:12:08 +08:00
commit 82dcc17968
72 changed files with 23293 additions and 0 deletions

17
src/App.vue Normal file
View File

@@ -0,0 +1,17 @@
<script setup lang="ts">
import { ConfigProvider } from 'ant-design-vue'
import zhCN from 'ant-design-vue/es/locale/zh_CN'
</script>
<template>
<ConfigProvider :locale="zhCN">
<router-view />
</ConfigProvider>
</template>
<style>
#app {
width: 100%;
height: 100%;
}
</style>