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