浅谈vue-router2路由参数注意的问题
时间:2021-04-14 09:04:19|栏目:vue|点击: 次
1、vue 路由 如果传递 params 定义路由的时候是
/路由名称:id
获取的时候
this.$route.params.id
最后形如
/路由名称/路由参数
传参的时候
params:{ str1:str1, str2:str2 }
2、如果传递query ?id=str.... 定义路由的时候直接是
/路由名称
获取的时候
this.$route.query.id
传参的时候
data:{ str1:str1, str2:str2 }