Initial commit

This commit is contained in:
Yinan Qin
2026-01-17 00:15:37 +08:00
committed by GitHub
commit 2250f89266
38 changed files with 1241 additions and 0 deletions

14
src/main.ts Normal file
View File

@@ -0,0 +1,14 @@
import { createApp } from 'vue'
import App from './App.vue'
import './style.css'
import './demos/ipc'
// If you want use Node.js, the`nodeIntegration` needs to be enabled in the Main process.
// import './demos/node'
createApp(App)
.mount('#app')
.$nextTick(() => {
postMessage({ payload: 'removeLoading' }, '*')
})