Vue跳转页面传参
Posted sunsie
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue跳转页面传参相关的知识,希望对你有一定的参考价值。
1、// 命名的路由
router.push({ name: ‘user‘, params: { userId: 123 }})
ps:params这样的传参前面只能是name
2、// 带查询参数,变成 /register?plan=private
router.push({ path: ‘register‘, query: { plan: ‘private‘ }})
3、在routes定义path:‘/detail/:id’
页面:to="/detail/+12345"
取参数的时候直接this.$route.params.id就能取到12345
以上是关于Vue跳转页面传参的主要内容,如果未能解决你的问题,请参考以下文章