This commit is contained in:
2023-12-19 12:22:11 +08:00
parent dfb1764252
commit e33a0c724c
31 changed files with 1788 additions and 75 deletions

View File

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