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

2021-12-30  本文已影响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

上一篇 下一篇

猜你喜欢

热点阅读