Vue 的父组件和子组件生命周期钩子执行顺序
Posted wtsx-2019
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue 的父组件和子组件生命周期钩子执行顺序相关的知识,希望对你有一定的参考价值。
Vue 的父组件和子组件生命周期钩子执行顺序
渲染过程:父组件挂载完成一定是等子组件都挂载完成后,才算是父组件挂载完,所以父组件的mounted在子组件mouted之后。父beforeCreate -> 父created -> 父beforeMount -> 子beforeCreate -> 子created -> 子beforeMount -> 子mounted -> 父mounted
子组件更新过程:
影响到父组件: 父beforeUpdate -> 子beforeUpdate->子updated -> 父updated
不影响父组件: 子beforeUpdate -> 子updated
父组件更新过程:
影响到子组件: 父beforeUpdate -> 子beforeUpdate->子updated -> 父updated
不影响子组件: 父beforeUpdate -> 父updated
销毁过程:父beforeDestroy -> 子beforeDestroy -> 子destroyed -> 父destroyed
看起来很多好像很难记忆,其实只要理解了,不管是哪种情况,都一定是父组件等待子组件完成后,才会执行自己对应完成的钩子,就可以很容易记住
以上是关于Vue 的父组件和子组件生命周期钩子执行顺序的主要内容,如果未能解决你的问题,请参考以下文章