mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-04 04:08:34 +08:00
9 lines
221 B
JavaScript
9 lines
221 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')
|
|
|