最近爬到能electron不會重新開啟程式方法
筆記筆記
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| const isSecondInstance = app.makeSingleInstance(() => { if (mainWindow) { if (mainWindow.isMinimized()) { mainWindow.restore(); } mainWindow.show(); mainWindow.focus(); } }); if (isSecondInstance) { app.quit(); }
|
參考使用 electron-vue 搭建桌面應用開發模板 - 神馬文庫
備份圖