mobile wallpaper 1
mobile wallpaper 2
mobile wallpaper 3
mobile wallpaper 4
46 字
1 分钟
Vue链接新页面打开
2021-05-28

尽管官方文档中提及了 <router-link> 不支持 target="_blank" 属性,但在vue2.0中依然是可以使用的,如下

<router-link target="_blank" :to="{name: 'Test', params: {id: testId}}">新页面跳转</router-link>

编程式导航#

此时需要使用 this.$router.resolve ,如下:

let routeUrl = this.$router.resolve({
name: 'Test',
params: {id: testId}
});
window.open(routeUrl.href, '_blank');
分享

如果这篇文章对你有帮助,欢迎分享给更多人!

Vue链接新页面打开
https://marrydream.top/posts/web前端/vue链接新页面打开/
作者
茉铃
发布于
2021-05-28
许可协议
CC BY-NC-SA 4.0

部分信息可能已经过时

目录