1. 同一路由下
子页面:
this.$parent.fatherMethod();
2. 子页面触发事件
父页面:
<child @fatherMethod="fatherMethod"></child>
子页面:
this.$emit('fatherMethod');
3.父页面把方法/属性传给子页面
父页面:
<child :fatherMethod="fatherMethod"></child>
子页面:
props只能是父组件向子组件进行传值,props使得父子组件之间形成一个单向的下行绑定。子组件的数据会随着父组件的更新而响应式更新。
props: { fatherMethod: { type: Function, default: null } }, this.fatherMethod();