This commit is contained in:
2021-01-15 15:47:45 +08:00
commit dc16453704
16 changed files with 13320 additions and 0 deletions

7
src/main.js Normal file
View File

@@ -0,0 +1,7 @@
import { createApp } from "vue";
import App from "./App.vue";
import router from "./router";
createApp(App)
.use(router)
.mount("#app");