加入dashboard

This commit is contained in:
langhuihui
2020-01-28 17:22:14 +08:00
parent cb1e601052
commit 3a9851fcd6
57 changed files with 21572 additions and 16 deletions

13
dashboard/src/main.js Normal file
View File

@@ -0,0 +1,13 @@
import Vue from 'vue'
import App from './App.vue'
import router from './router'
import store from './store'
import './plugins/iview.js'
Vue.config.productionTip = false
new Vue({
router,
store,
render: h => h(App)
}).$mount('#app')