初始化仓库

This commit is contained in:
tao
2025-12-17 17:00:29 +08:00
commit 71158afc35
44 changed files with 5301 additions and 0 deletions

16
src/main.ts Normal file
View File

@@ -0,0 +1,16 @@
import { createApp } from "vue";
import App from "./App.vue";
// Pinia 状态管理
import { createPinia } from "pinia";
const pinia = createPinia();
// Vue Router
import router from "./router";
// 样式文件
import "ant-design-vue/dist/reset.css";
import "@/assets/styles/index.scss";
const app = createApp(App);
app.use(pinia).use(router).mount("#app");