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