this.$router.resolveVue打开新窗口

方法一

 tag="a" 可以省去不写,默认也会解释为a标签

 "tag" 属 性 :具有 tag 属性的 router-link 会被渲染成相应的标签

方法二
const {href} = this.$router.resolve({
                path: "/跳转的页面路由",
                query:{//要传的参数
                    id:this.id
                }
            });
            window.open(href, '_blank');//打开新的窗口

 

你可能感兴趣的:(vue)