element-plus/website/play.js
zazzaz dc96b070b9
fix: fix WeekPicker should return the first day of the week (#1169)
* fix: fix WeekPicker should return the first day of the week

fix #1028

* chore: update

* chore: update
2021-01-02 18:23:45 +08:00

10 lines
222 B
JavaScript

import { createApp } from 'vue'
import ElementPlus from 'element-plus'
import App from './play/index.vue'
import '../packages/theme-chalk/src/index.scss'
const app = createApp(App)
app.use(ElementPlus)
app.mount('#app')