mirror of
https://github.com/tidys/cc-inspector-chrome
synced 2025-12-14 01:58:46 +00:00
12 lines
211 B
TypeScript
12 lines
211 B
TypeScript
import Vue from 'vue';
|
|
|
|
import ElementUI from 'element-ui'
|
|
import 'element-ui/lib/theme-chalk/index.css'
|
|
Vue.use(ElementUI);
|
|
|
|
import index from './index.vue';
|
|
new Vue({
|
|
el: '#app',
|
|
render: h => h(index)
|
|
});
|