mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
dc96b070b9
* fix: fix WeekPicker should return the first day of the week fix #1028 * chore: update * chore: update
10 lines
222 B
JavaScript
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')
|
|
|