vue跳转外部链接始终有localhost
在写页面跳转的时候,跳转的新页面始终带有localhost:端口号
- 错误图片如下:
- 正确图片如下:
btnClick(){
let url = "www.baidu.com"
window.open(url) // 这种跳转的话始终带一个localhost
window.open(`https://${url}`) //这样的话就跳转正确了
},
注意点:跳转的url加上http或https协议即可
vue页面跳转外部链接打开新标签页
let href = 'https://www.baidu.com/'
window.open(href, '_blank');
总结
以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。