this.$router.push跳转
时间: 2023-11-04 21:58:54 浏览: 108
Vue this.$router.push(参数)实现页面跳转操作
this.$router.push是Vue.js路由中的一个方法,用于进行页面跳转。它可以用于传递参数并跳转到指定的路径或命名路由。使用query进行传参时,参数会显示在URL中,可以通过path属性指定路径和参数。使用params进行传参时,参数不会显示在URL中,需要通过name属性指定路由名称和参数。
例如,使用query传参的示例代码如下:
this.$router.push({path:'路径', query: {id: 参数}});
使用params传参的示例代码如下:
this.$router.push({name: '路径', params: {id: 参数}});
阅读全文