Vue 如何支持动态router+props同时穿参?

很简单,但需要将动态路由转化为props中的参数,看下面代码来理解:

···
{
path:"item/:name",
name: "item unit",
component: ItemUnit,
props: (route)=>{
return {
name: route.params.name,
type:"item"
}
}
},
···

接收端也简单

{
  props:['name','type'],
}

你可能感兴趣的:(Vue 如何支持动态router+props同时穿参?)