vue父组件和子组件生命周期钩子执行顺序

Vue 的父组件和子组件生命周期钩子执行顺序是什么

1、加载渲染过程

父beforeCreate->父created->父beforeMount->子beforeCreate->子created->子beforeMount->子mounted->父mounted

2、子组件更新过程

父beforeUpdate->子beforeUpdate->子updated->父updated

3、父组件更新过程

父beforeUpdate->父updated

4、销毁过程

父beforeDestroy->子beforeDestroy->子destroyed->父destroyed

----------------------------------------------

copy from:https://www.cnblogs.com/samsara-yx/p/11352432.html

可参考:https://segmentfault.com/a/1190000015890245

你可能感兴趣的:(vue父组件和子组件生命周期钩子执行顺序)