this.$router.push跳转新开页面
时间: 2023-11-10 15:04:15 浏览: 174
Vue this.$router.push(参数)实现页面跳转操作
this.$router.push可以用于在Vue.js中进行路由跳转,可以实现在当前窗口或者新开一个窗口进行跳转。如果要在新开一个窗口进行跳转,可以使用target属性,例如:
```
this.$router.push({ path: '/newPage', query: { id: 123 }, target: '_blank' })
```
其中,path表示要跳转的路径,query表示要传递的参数,target表示要在新开一个窗口中打开。
阅读全文