16 lines
331 B
TypeScript
Raw Normal View History

2021-04-02 22:34:09 +08:00
import Vue from "vue";
import ElementUI from "element-ui"
import "element-ui/lib/theme-chalk/index.css"
2021-06-19 19:51:05 +08:00
import './icon-font/iconfont.css'
2021-04-04 19:10:58 +08:00
import "./global.less"
2021-04-02 22:34:09 +08:00
import index from "./index.vue";
2021-04-26 22:27:47 +08:00
import {init} from './register-panel';
init();
2021-04-05 19:31:34 +08:00
2021-04-03 16:47:16 +08:00
Vue.use(ElementUI, {size: "mini"});
2019-03-15 10:08:39 +08:00
new Vue({
2021-04-02 22:34:09 +08:00
el: "#app",
2019-03-16 15:11:29 +08:00
render: h => h(index)
2019-03-15 10:08:39 +08:00
});