美文网首页
vue打开新页面this.$router.resolve

vue打开新页面this.$router.resolve

作者: 秀萝卜 | 来源:发表于2021-12-30 11:54 被阅读0次

打开vue新页面,使用resolve

    let {href}= this.$router.resolve({
            path: "/newLinkPage",  
     });
     window.open(href, '_blank');
// 打开新页面
var newWindow = this.$router.resolve({
   path: item.url,
});
window.open(newWindow.href, "_blank");

参考资料:
https://www.cnblogs.com/liuliu-/p/13050545.html

相关文章

网友评论

      本文标题:vue打开新页面this.$router.resolve

      本文链接:https://www.haomeiwen.com/subject/igeiqrtx.html