mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-27 02:01:15 +08:00
9 lines
163 B
TypeScript
9 lines
163 B
TypeScript
import { createApp } from 'vue'
|
|
import App from './src/App.vue'
|
|
|
|
import '@element-plus/theme-chalk/src/index.scss'
|
|
|
|
const app = createApp(App)
|
|
|
|
app.mount('#play')
|