路由跳转到新的页面

JS跳转到新的页面:

var href = 'http://www.baidu.com'
window.open(href, '_blank')

Vue跳转到新的页面

Vue跳转到新的页面
const { href } = this.$router.resolve({
    name: "LookLive",
    params: { webinarId: this.$route.params.item.webinarId }
})
window.open(href, '_blank')

Vue跳转到本页面
this.$router.push({
    name: "LookLive",
    params: { webinarId: this.$route.params.item.webinarId }
})


无论是跳转到新页面还是老页面都是一样的路由配置
{ path: '/LookLive/:webinarId', name: 'LookLive', component: LookLive }

 

你可能感兴趣的:(Vue)