记录下electron加vue-router使用vite打包时子路径访问不到的问题。
vue-router打包后子路径访问问题
1 2 3 4 5 6 7 8 9
| newWindow.webContents.on('did-finish-load', () => { newWindow.webContents.executeJavaScript(`window.location.hash = '#/ai';`); });
newWindow.loadFile(path.join(__dirname, './dist/index.html'));
newWindow.once('ready-to-show', () => { newWindow.show(); });
|