VUE页面之间传值 跳转页面不刷新bug

//传值

goInfo:function(id){
       this.$router.push({name: 'clear', params: {id: id}})
}

 

//接收

this.$route.params.id

 

 

路由配置

 {path: '/cleaning/:id', component: cleaning,name: 'clear'},

你可能感兴趣的:(vue)