This commit is contained in:
veypi
2021-01-09 11:49:23 +08:00
parent cb8dd97c4a
commit 215cb69313
22 changed files with 8945 additions and 1220 deletions
+12
View File
@@ -0,0 +1,12 @@
import Vue from 'vue'
import App from './App.vue'
import router from './router'
import store from './store'
Vue.config.productionTip = false
new Vue({
router,
store,
render: h => h(App)
}).$mount('#app')