import { createApp } from 'vue' import Play from './play.vue' import '@element-plus/theme-chalk/src/index.scss' const app = createApp(Play) app.mount('#play')