1.query,显示在导航栏?后,相当于get请求传参
this.router.push({path:'/login',query:{ 'redirect':'/home'}})
this.router.push({name:'Login',query:{ 'redirect':'/home'}})
2.parmas,不会显示,相当于post请求传参, 目前测试没有query不行,而且刷新后消失
this.router.push({name:'Login',parmas:{ 'redirect':'/home'}})
this.router.push({name:'Login',query:{ 'redirect':'/home'}},parmas:{ 'redirect':'/home'}})
在vue中使用parmas传参时必须用name跳转,而且必须和query一起传?否则接收不到;或者路由中有设置/:XX来接收这个参数
3.meta,不显示,测试失败
this.router.push({name:'Login',meta:{ 'redirect':'/home'}})