this.$router.push query
时间: 2023-11-11 16:56:03 浏览: 59
Vue this.$router.push(参数)实现页面跳转操作
this.$router.push的query参数是通过路由跳转时附加的查询参数。在上述代码示例中,this.$router.push方法的第二个参数是一个对象,对象的属性将作为查询参数传递给目标路由。通过使用this.$router.push方法并传递一个query对象,可以实现在路由跳转时传递数据。
阅读全文