您的当前位置:首页>全部文章>文章详情

vue-router在新窗口中打开链接

发表于:2023-09-09 09:11:14浏览:68次TAG: #Vue
goPage:function(id){
   let routeUrl = this.$router.resolve({path:'/news',query:{id:id}});
   window.open(routeUrl.href,'_blank')
}