Vue跳转外链的方法
这位兄弟总结的还不错<el-button slot="append" icon="el-icon-search" @click="see(0)"></el-button>methods: {see(index) {alert(this.url[index].creazyurl)//加上这个便可以跳转啦window.location.href = "http://www.ba
·
<el-button slot="append" icon="el-icon-search" @click="see(0)"></el-button>
methods: {
see(index) {
alert(this.url[index].creazyurl)
//加上这个便可以跳转啦
window.location.href = "http://www.baidu.com";
//打开新的标签页
window.open("http://www.baidu.com","_blank");
}
}
更多推荐
已为社区贡献3条内容
所有评论(0)