1. 程式人生 > >vue中父子組件的通信

vue中父子組件的通信

method data ati 替換 .html dispatch ldm prop ren

1、父組件向子組件傳遞數據

  父組件傳遞:data = parent.data

  子組件接收props: {data:{}}

2、子組件向父組件傳遞數據(https://vuefe.cn/v2/guide/migration.html#dispatch-和-broadcast-替換)

  子組件派發事件:this.$emit(‘name‘,param)

  父組件監聽事件:①v-on:name=method  methods:{method() {}}  ②this.$on(‘name‘,this.method)

3、父組件向子組件傳遞參數並調用方法

  給子組件添加ref標簽:ref="child" 調用並傳參this.$refs.child.childmethod(param)

vue中父子組件的通信