mirror of
https://github.com/tidys/cc-inspector-chrome
synced 2025-04-19 08:28:41 +00:00
11 lines
261 B
TypeScript
11 lines
261 B
TypeScript
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");
|