vue页面跳转外部链接
作者:互联网
vue页面跳转外部链接
在vue页面中如果想要点击某个内容跳转对应的URL(外部),可以采用下面两种方式:
1)window.location.href = url
2) window.open(url, '跳转方式')
跳转方式:_self--在当前页打开
_blank--在新页面打开
_top:框架网页中在上部窗口中显示目标网页
例如:
goUrl (url) { window.location.href = url 或 window.open(url, _blank) }
参考网址:
window.open()的用法_百度知道 (baidu.com)
(3条消息) VUE中通过click跳转链接_嘿!陈俊彦的博客-CSDN博客_vue点击跳转链接
标签:vue,url,window,跳转,open,链接,页面 来源: https://www.cnblogs.com/s1-myblog/p/16615740.html