跳至内容

$children
已移除

概述

$children 实例属性已从 Vue 3.0 中移除,不再受支持。

2.x 语法

在 2.x 中,开发者可以使用 this.$children 访问当前实例的直接子组件。

vue
<template>
  <div>
    <img alt="Vue logo" src="./assets/logo.png">
    <my-button>Change logo</my-button>
  </div>
</template>

<script>
import MyButton from './MyButton'

export default {
  components: {
    MyButton
  },
  mounted() {
    console.log(this.$children) // [VueComponent]
  }
}
</script>

3.x 更新

在 3.x 中,$children 属性已移除,不再受支持。如果您需要访问子组件实例,我们建议使用 模板引用

迁移策略

迁移构建标志:INSTANCE_CHILDREN