mirror of
https://github.com/element-plus/element-plus.git
synced 2025-02-11 11:39:43 +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')
|