# Vue组件实例之间的直接访问
有时候需要父组件访问子组件,子组件访问父组件,或者是子组件访问根组件。 在组件实例中,Vue提供了相应的属性,
包括$parent
、$children
、$refs
和$root
,这些属性都挂载在组件的this上。
# $parent
$parent
表示父组件的实例,该属性只读
data(){
parentMsg:'父组件的数据'
}
<!-- 子组件 -->
<h1>{{ childMsg }}</h1>
<button @click="getParentMsg()">获取并显示父组件数据</button>
data(){
childMsg:''
},
methods:{
getParentMsg(){
this.childMsg = this.$parent.childMsg
}
}
# $root
$root
表示当前组件树的根 Vue 实例。如果当前实例没有父实例,此实例将会是其自己。该属性只读
# $children
$children
表示当前实例的直接子组件。需要注意$children
并不保证顺序,也不是响应式的。如果正在尝试使用$children
来进行数据绑定,考虑使用一个数组配合v-for来生成子组件,并且使用Array作为真正的来源
# $refs
组件个数较多时,难以记住各个组件的顺序和位置,通过序号访问子组件不是很方便
在子组件上使用ref属性,可以给子组件指定一个索引ID:
<child-component1 ref="c1"></child-component1>
<child-component2 ref="c2"></child-component2>
getData1(){
this.msg1 = this.$refs.c1.msg;
},
getData2(){
this.msg2 = this.$refs.c2.msg;
},
# 总结
✨
虽然vue提供了以上方式对组件实例进行直接访问,但并不推荐这么做。
这会导致组件间紧密耦合,且自身状态难以理解,所以尽量使用props、自定义事件以及内容分发slot来传递数据
← Vue内容分发slot Vue模板语法 →