vue 通过“router-view/router-view ”渲染成的子组件,如何向父组件传值

1.子组件给父组件传值
父组件:

methods:{
getShopCode(value){
conso.log(value);
}
}

子组件:

methods:{
goShopList(value){
this. e m i t ( ′ g e t S h o p C o d e ′ , v a l u e ) t h i s . emit('getShopCode',value) this. emit(getShopCode,value)this.router.push({name:‘shopList’});
}
}
2.父组件发生变化导致子组件变化

父组件:
//inputValue为传递给子组件的值

子组件:

watch:{
inputValue:function(value){
console.log(value)
}
}

你可能感兴趣的:(vue,vue)