admin管理员组

文章数量:1130349

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

本文标签: 跳转到浏览器链接方法系统