import Vue from "vue"; import ElementUI from "element-ui"; import "element-ui/lib/theme-chalk/index.css"; import App from "./App.vue"; import router from "./router"; import store from "./store"; import "./style/index.css"; // import utils from 'utils-lan' Vue.config.productionTip = false; Vue.use(ElementUI); new Vue({ router, store, render: h => h(App) }).$mount("#app");