mirror of
https://github.com/element-plus/element-plus.git
synced 2024-12-21 02:50:11 +08:00
11 lines
231 B
JavaScript
11 lines
231 B
JavaScript
|
import Vue from 'vue'
|
||
|
import Element from 'main/index.js'
|
||
|
import App from './play/index.vue'
|
||
|
import 'packages/theme-chalk/src/index.scss'
|
||
|
|
||
|
Vue.use(Element)
|
||
|
|
||
|
new Vue({ // eslint-disable-line
|
||
|
render: h => h(App),
|
||
|
}).$mount('#app')
|