import Vue from 'vue' import root from './root.vue' import ElementUI from 'element-ui' import 'element-ui/lib/theme-chalk/index.css' Vue.use(ElementUI) Vue.config.productionTip = true /* eslint-disable no-new */ new Vue({ el: '#root', render: h => h(root) })