const { app, BrowserWindow } = require('electron'); function createWindow() { const win = new BrowserWindow({ width: 1000, height: 700, webPreferences: { nodeIntegration: true } }); win.loadFile('dist/index.html'); // Vue 打包后的文件 } app.whenReady().then(createWindow);