This commit is contained in:
2021-09-16 15:56:59 +08:00
commit d9ea8630df
29 changed files with 9807 additions and 0 deletions

10
src/main.ts Normal file
View File

@@ -0,0 +1,10 @@
import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
import store from './store'
const app = createApp(App)
app.use(store)
app.use(router)
app.mount('#app')