父组件主动获取子组件的数据和方法
1.调用子组件的时候 定义一个ref
<headerchild ref="headerChild"></headerchild>
2.在父组件里面通过
this.$refs.headerChild.属性 t
his.$refs.headerChild.方法
子组件主动获取父组件的数据和方法
this.$parent.属性
this.$parent.方法
1.调用子组件的时候 定义一个ref
<headerchild ref="headerChild"></headerchild>
2.在父组件里面通过
this.$refs.headerChild.属性 t
his.$refs.headerChild.方法
this.$parent.属性
this.$parent.方法