概览
$children
实例 property 已从 Vue 3.0 中移除,不再支持。
2.x 语法
在 2.x 中,开发者可以使用 this.$children
直接访问当前实例的子组件:
1 | <template> |
3.x 更新
在 3.x 中,$children
property 已移除,不再支持。如果你需要访问子组件实例,我们建议使用 $refs。
$children
实例 property 已从 Vue 3.0 中移除,不再支持。
在 2.x 中,开发者可以使用 this.$children
直接访问当前实例的子组件:
1 | <template> |
在 3.x 中,$children
property 已移除,不再支持。如果你需要访问子组件实例,我们建议使用 $refs。