Vue下,一般是使用路由router来打开其他页面,例如:this.$router.push("/home"),有时候需要在vue里打开外部的链接。
如果在html里用a标签打开外部链接,那就直接这样做:
<a href='https://www.baidu.com' target='blank'></a>
如果在JS代码中打开
# 把当前页面替换成新页面(history历史记录中不会多一个,也就是说不能按返回来到上一个页面) window.location.replace('https://www.baidu.com'); # 正常跳转 window.location.href = 'https://www.baidu.com';
文章评论