Electron的版本现在都19点多了,如果用Electron-Vue搭建的项目,Electron版本才2点几。
升级Electron
执行yarn upgrade-interactive --latest
勾选 4个以electron
开头的依赖
回车
等一万年~~~~~~
即升级成功 ✌️
然后,src文件夹下main文件夹下index.js文件的new BrowserWindow
代码段里加上:
webPreferences: {
nodeIntegration: true,
enableRemoteModule: true, // 打开remote模块
}
执行npm run dev
查看