electron 下打开系统默认浏览器

640 阅读1分钟

• **在 electron 环境下的点击事件调出系统默认的浏览器并打开传入的链接


<el-button @click="open('<http://www.baidu.com>')">
	点击跳转到百度
</el-button>
methods: {
    open(link) {
        this.$electron.shell.openExternal(link);
    }
}