mirror of
https://github.com/electron-vite/electron-vite-vue
synced 2025-01-19 20:07:06 +08:00
8 lines
156 B
TypeScript
8 lines
156 B
TypeScript
import { createApp } from 'vue'
|
|
import App from './App.vue'
|
|
import './samples/node-api'
|
|
|
|
createApp(App)
|
|
.mount('#app')
|
|
.$nextTick(window.removeLoading)
|