2021-04-26 22:27:47 +08:00

15 lines
297 B
TypeScript

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