mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-03 19:58:09 +08:00
477519a52e
- Add vite config for local dev
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')
|