mirror of
https://github.com/tidys/cc-inspector-chrome
synced 2025-04-19 16:38:41 +00:00
10 lines
215 B
TypeScript
10 lines
215 B
TypeScript
|
import Vue from "vue";
|
||
|
import App from "./index.vue";
|
||
|
import ElementUI from "element-ui";
|
||
|
|
||
|
Vue.config.productionTip = false;
|
||
|
Vue.use(ElementUI, {size: "mini"});
|
||
|
new Vue({
|
||
|
render: (h) => h(App),
|
||
|
}).$mount("#app");
|