子组件访问父组件的几种方式
1、直接在子组件中调用 this.parent
来访问(不推荐)
2、在子组件中使用 this.emit
向父组件发送消息
3、父组件把方法传入子组件中,在子组件中调用该方法
父组件访问子组件的几种方式:
1、在子组件加上 ref="myComponent"
,然后在父组件调用 this.$refs.myComponent
获取子组件实例
2、在子组件加上 v-on:[event]="doThis"
,当子组件触发(emit)event事件时,执行 doThis
方法