关于Vue中this.$refs,this.$parent,this.$children

439 阅读1分钟
  • this.$refs可以获取子组件里的data和methods,前提是需要在注册组件中绑定ref=''一个属性

  • this.$parent 可以子组件中获取父组件的data,也可以调用父组件的methods

  • this.$children 可以父组件获取子组件的data和methods 这里获取的是一个数组

image.png

访问需要this.$children[index] 访问具体子组件!!!