electron-vue-template icon indicating copy to clipboard operation
electron-vue-template copied to clipboard

send-data无法获取到数据?

Open EmKs opened this issue 2 years ago • 1 comments

let data = { url: "/test/web", resizable: true, webview: true, sendData: item }; ipcRenderer.invoke("open-win", data) 启动一个新页面 然后新页面 import { ipcRenderer } from "electron"; ipcRenderer.on("send-data", (event, data) => { console.log(event) console.log(data) }) 没有任何反应

EmKs avatar Aug 11 '22 11:08 EmKs

因为新的页面展示会慢过send,这个将会在下个版本解决

umbrella22 avatar Oct 20 '22 15:10 umbrella22