Files
cc-inspector-chrome/CocosCreatorInspector/src/popup/index.ts

12 lines
211 B
TypeScript
Raw Normal View History

2019-03-15 10:08:39 +08:00
import Vue from 'vue';
2019-03-15 19:10:02 +08:00
2019-03-16 11:27:49 +08:00
import ElementUI from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'
2019-03-15 10:08:39 +08:00
Vue.use(ElementUI);
2021-04-01 17:47:56 +08:00
import index from './index.vue';
2019-03-15 10:08:39 +08:00
new Vue({
el: '#app',
2019-03-15 19:10:02 +08:00
render: h => h(index)
2019-03-15 10:08:39 +08:00
});