05 2021 档案
@electron/remote Menu click事件失效
摘要:检查是否移除了所有监听,比如: ipcRenderer.removeAllListeners(); 会造成 click 事件失效。 相关链接: 1. https://github.com/electron/remote
阅读全文
修改 vue-cli-plugin-electron-builder 入口
摘要:看源码 在 vue.config.js 里增加配置 module.exports = { pluginOptions: { electronBuilder: { mainProcessFile: 'src/mainProcess/entry.js', } } }; 重启应用。 注意: 1. pack
阅读全文
vue cli3 在 electron 下无法访问 node 模块
摘要:在 vue.config.js 里增加配置: module.exports = { pluginOptions: { electronBuilder: { nodeIntegration: true } } } 参考链接: https://nklayman.github.io/vue-cli-plu
阅读全文
electron electron-forge make 打包报错
摘要:报错步骤:Making for target: squirrel - On platform: win32 - For arch: x64 解决方法:填写 package.json 里的 description 和 author Authors is required.Description is
阅读全文