import Vue from "vue"; import ElementUI from "element-ui" import "element-ui/lib/theme-chalk/index.css" import './icon-font/iconfont.css' import "./global.less" import index from "./ui/index.vue"; import {init} from './register-panel'; init(); Vue.use(ElementUI, {size: "mini"}); new Vue({ el: "#app", render: h => h(index) });