DemuMesDataV/src/main.js

21 lines
340 B
JavaScript
Raw Normal View History

2018-12-04 11:43:18 +08:00
import Vue from 'vue'
import App from './App.vue'
2018-12-13 18:48:54 +08:00
import router from './router/index'
2018-12-04 11:43:18 +08:00
2018-12-05 13:41:53 +08:00
import './assets/style/index.less'
import plugins from './plugins/index'
2018-12-13 18:48:54 +08:00
import components from './components/index'
2018-12-05 13:41:53 +08:00
Vue.use(plugins)
2018-12-13 18:48:54 +08:00
Vue.use(components)
2018-12-05 13:41:53 +08:00
2018-12-04 11:43:18 +08:00
Vue.config.productionTip = false
new Vue({
2018-12-13 18:48:54 +08:00
router,
2018-12-04 11:43:18 +08:00
render: h => h(App)
}).$mount('#app')