mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-11-30 03:07:36 +08:00
5e8dfd0738
* Playground: bump to new theme * Tree: update chalk theme * update doc * Update var.scss
11 lines
236 B
JavaScript
11 lines
236 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');
|