当前位置: 首页 > Web前端 > vue.js

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

时间:2023-03-31 20:46:20 vue.js

1、加载渲染过程parentbeforeCreate=>parentcreated=>parentbeforeMount=>childbeforeCreate=>childcreated=>childbeforeMount=>childmounted=>parentmounted2、子组件更新流程parentbeforeUpdate=>childbeforeUpdate=>childupdated=>parentupdated3、父组件更新流程parentbeforeUpdate=>parentupdated4、销毁流程parentbeforeDestroy=>childbeforeDestroy=>childdestroyed=>父母被摧毁