15 lines
308 B
JavaScript
15 lines
308 B
JavaScript
|
import Vue from 'vue'
|
||
|
import App from './App.vue'
|
||
|
import router from './router'
|
||
|
import ElementUI from 'element-ui'
|
||
|
import 'element-ui/lib/theme-chalk/index.css'
|
||
|
import './assets/css/globel.css'
|
||
|
|
||
|
Vue.use(ElementUI)
|
||
|
Vue.config.productionTip = false
|
||
|
|
||
|
new Vue({
|
||
|
router,
|
||
|
render: h => h(App)
|
||
|
}).$mount('#app')
|