mirror of
https://github.com/element-plus/element-plus.git
synced 2025-01-06 10:38:31 +08:00
9 lines
162 B
TypeScript
9 lines
162 B
TypeScript
|
import { createApp } from 'vue'
|
||
|
import Play from './play.vue'
|
||
|
|
||
|
import '@element-plus/theme-chalk/src/index.scss'
|
||
|
|
||
|
const app = createApp(Play)
|
||
|
|
||
|
app.mount('#play')
|