element-plus/play/main.ts

9 lines
163 B
TypeScript
Raw Normal View History

import { createApp } from 'vue'
2021-10-06 19:36:30 +08:00
import App from './src/App.vue'
import '@element-plus/theme-chalk/src/index.scss'
2021-10-06 19:36:30 +08:00
const app = createApp(App)
2021-10-29 11:55:45 +08:00
app.mount('#play')