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