mirror of
https://github.com/electron-vite/electron-vite-vue
synced 2025-07-03 14:13:16 +08:00
8 lines
149 B
TypeScript
8 lines
149 B
TypeScript
import { createApp } from 'vue'
|
|
import App from './App.vue'
|
|
import './index.css'
|
|
|
|
createApp(App)
|
|
.mount('#app')
|
|
.$nextTick(window.removeLoading)
|