vue 路由传参两种方式

方式一:

路由路径:/detail/:参数名

this.$router.push({path: '/detail/'+参数值});

接收:$route.params.参数名

方式二:

路由路径:/detail

this.$router.push({path: '/detail/',query:{参数名:参数值});

接收:$router.currentRoute.query.参数名

方式三:

接受:this.$route.params.参数名

你可能感兴趣的:(vue 路由传参两种方式)