element-plus/play/main.ts

23 lines
653 B
TypeScript
Raw Normal View History

import { Component, createApp } from 'vue'
2022-06-28 16:25:52 +08:00
import '@element-plus/theme-chalk/src/dark/css-vars.scss'
import '@element-plus/theme-chalk/src/notification.scss'
import '@element-plus/theme-chalk/src/message-box.scss'
import '@element-plus/theme-chalk/src/message.scss'
2022-02-11 11:04:15 +08:00
;(async () => {
const apps = import.meta.glob<
true,
string,
() => Promise<{ default: Component }>
>('./src/*.vue')
2022-02-11 11:04:15 +08:00
const name = location.pathname.replace(/^\//, '') || 'App'
const file = apps[`./src/${name}.vue`]
if (!file) {
location.pathname = 'App'
return
}
const App = (await file()).default
2022-02-11 11:04:15 +08:00
const app = createApp(App)
2022-02-11 11:04:15 +08:00
app.mount('#play')
})()