first commit

This commit is contained in:
Ruin
2022-01-25 18:30:11 +08:00
commit e2edaec30a
22 changed files with 3321 additions and 0 deletions

9
src/main.ts Normal file
View File

@@ -0,0 +1,9 @@
import { createApp } from "vue";
import router from "./router/index"; //引入vue-router
import store from "./store/index";
import App from "./App.vue";
const app = createApp(App);
app.use(router); // 挂载到app上
app.use(store); // 挂载到app上
app.mount("#app");