mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-11-30 03:07:36 +08:00
11 lines
237 B
JavaScript
11 lines
237 B
JavaScript
import Vue from 'vue';
|
|
import Element from 'main/index.js';
|
|
import App from './play/index.vue';
|
|
import 'packages/theme-default/src/index.css';
|
|
|
|
Vue.use(Element);
|
|
|
|
new Vue({ // eslint-disable-line
|
|
render: h => h(App)
|
|
}).$mount('#app');
|