mirror of
https://github.com/tidys/cc-inspector-chrome
synced 2025-04-19 08:28:41 +00:00
13 lines
265 B
JavaScript
13 lines
265 B
JavaScript
|
import Vue from 'vue'
|
||
|
import root from './root.vue'
|
||
|
import ElementUI from 'element-ui'
|
||
|
import 'element-ui/lib/theme-chalk/index.css'
|
||
|
|
||
|
Vue.config.productionTip = false
|
||
|
Vue.use(ElementUI)
|
||
|
/* eslint-disable no-new */
|
||
|
new Vue({
|
||
|
el: '#root',
|
||
|
render: h => h(root)
|
||
|
})
|