• **在 electron 环境下的点击事件调出系统默认的浏览器并打开传入的链接
<el-button @click="open('<http://www.baidu.com>')">
点击跳转到百度
</el-button>
methods: {
open(link) {
this.$electron.shell.openExternal(link);
}
}
• **在 electron 环境下的点击事件调出系统默认的浏览器并打开传入的链接
<el-button @click="open('<http://www.baidu.com>')">
点击跳转到百度
</el-button>
methods: {
open(link) {
this.$electron.shell.openExternal(link);
}
}