vue.js 父组件主动获取子组件的数据和方法、子组件主动获取父组件的数据和方法

组件主动获取组件数据方法

1.调用子组件的时候 定义一个ref

  <headerchild ref="headerChild"></headerchild>

2.在父组件里面通过

  this.$refs.headerChild.属性 t

  his.$refs.headerChild.方法

子组件主动获取父组件的数据和方法

  this.$parent.属性

  this.$parent.方法

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wsfxpx.html