element/examples/play.js
Dreamacro 5e8dfd0738 Tree: add chalk theme (#6901)
* Playground: bump to new theme

* Tree: update chalk theme

* update doc

* Update var.scss
2017-09-13 22:34:26 -05:00

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');