Skip to content

Vue 中父组件怎么监听到子组件的生命周期?

Posted on:2024年8月10日 at 17:07

在 Vue.js 中,父组件不能直接监听子组件的生命周期钩子。然而,有几种方法可以实现父组件对子组件生命周期的间接监听或执行特定操作。

方法一:通过事件通信

子组件在生命周期钩子中触发自定义事件,父组件监听这些事件。

1. 子组件

<template>
  <div>子组件</div>
</template>

<script>
export default {
  name: 'ChildComponent',
  mounted() {
    this.$emit('childMounted');
  }
}
</script>

2. 父组件

<template>
  <div>
    <ChildComponent @childMounted="handleChildMounted" />
  </div>
</template>

<script>
import ChildComponent from './ChildComponent.vue';

export default {
  components: {
    ChildComponent
  },
  methods: {
    handleChildMounted() {
      console.log('子组件已挂载');
    }
  }
}
</script>

方法二:使用 ref

父组件通过 ref 直接访问子组件实例,并在父组件的生命周期钩子中调用子组件的方法。

1. 子组件

<template>
  <div>子组件</div>
</template>

<script>
export default {
  name: 'ChildComponent',
  mounted() {
    console.log('子组件已挂载');
  }
}
</script>

2. 父组件

<template>
  <div>
    <ChildComponent ref="child" />
  </div>
</template>

<script>
import ChildComponent from './ChildComponent.vue';

export default {
  components: {
    ChildComponent
  },
  mounted() {
    this.$refs.child.$on('hook:mounted', this.handleChildMounted);
  },
  methods: {
    handleChildMounted() {
      console.log('通过 ref 获取子组件的挂载');
    }
  }
}
</script>

方法三:使用 provideinject

通过 provideinject 实现跨层级组件通信。

1. 子组件

<template>
  <div>子组件</div>
</template>

<script>
export default {
  name: 'ChildComponent',
  inject: ['notifyParent'],
  mounted() {
    this.notifyParent('mounted');
  }
}
</script>

2. 父组件

<template>
  <div>
    <ChildComponent />
  </div>
</template>

<script>
import ChildComponent from './ChildComponent.vue';

export default {
  components: {
    ChildComponent
  },
  provide() {
    return {
      notifyParent: this.handleNotification
    }
  },
  methods: {
    handleNotification(hook) {
      if (hook === 'mounted') {
        console.log('子组件已挂载');
      }
    }
  }
}
</script>
原文转自:https://fe.ecool.fun/topic/126917b6-56bc-4c94-81b7-f39263395546