element-plus/website/play.js
zazzaz f12000f9c2
feat: add website (#135)
* feat: add website

* chore: fix
2020-08-13 15:18:26 +08:00

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