This commit is contained in:
2020-09-24 10:26:22 +08:00
commit da2254c18e
17 changed files with 9242 additions and 0 deletions

6
src/main.ts Normal file
View File

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