项目初始化

This commit is contained in:
zhoumengru
2025-08-29 12:06:02 +08:00
parent dda905cda0
commit 5e559f8d36
18 changed files with 13367 additions and 0 deletions

8
web/src/main.js Normal file
View File

@@ -0,0 +1,8 @@
import { createApp } from "vue";
import App from "./App.vue";
import router from "./router";
import store from "./store";
import Antd from "ant-design-vue";
import "ant-design-vue/dist/reset.css";
createApp(App).use(store).use(router).use(Antd).mount("#app");