iframe调用vue里面事件
vue里面:
created() {
let self = this
window.vueid = () => {
self.test()
}
},
methods: {
test() {
const { shell } = window.require('electron')
shell.openExternal('https://www.cnblogs.com/doubino/p/10622669.html')
}
}
iframe里面调用:
window.parent.vueid()