mirror of
https://github.com/tidys/cc-inspector-chrome
synced 2025-04-15 22:51:03 +00:00
13 lines
268 B
JavaScript
13 lines
268 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.use(ElementUI)
|
|
|
|
Vue.config.productionTip = true
|
|
/* eslint-disable no-new */
|
|
new Vue({
|
|
el: '#root',
|
|
render: h => h(root)
|
|
})
|