解决Electron-Vue的electron版本太老的问题

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查看

你可能感兴趣的:(解决Electron-Vue的electron版本太老的问题)