This commit is contained in:
saplf
2018-09-29 21:33:23 +08:00
parent 0a2c4e30de
commit be7755c0f3
40 changed files with 936 additions and 73 deletions

View File

@@ -1,8 +1,10 @@
import Vue from 'vue'
import App from './App.vue'
import router from './router'
import store from './store'
import { app } from './services'
import { i18n } from './i18n'
import store from './store'
import './services/ui'
Vue.config.productionTip = false
Vue.config.devtools = app.dev
@@ -11,5 +13,6 @@ Vue.config.performance = !app.dev
new Vue({
router,
store,
i18n,
render: h => h(App),
}).$mount('#app')