vue父子组件的生命周期顺序
提示
Vue官方文档 (opens new window) 原笔记 (opens new window) 说明:本章内容是博主收录的Vue学习笔记,基于原笔记的修改
# vue父子组件的生命周期顺序
# 加载渲染过程
父beforeCreate -> 父created-> 父beforeMount-> 子beforeCreate -> 子created -> 子beforeMount -> 子mounted -> 父mounted
1
父组件会先执行到beforeMount,接着会执行子组件钩子到挂载结束,再挂载父组件。
# 子组件更新过程
父beforeUpdate -> 子beforeUpdate -> 子updated -> 父updated
1
# 父组件更新过程
父beforeUpdate -> 父updated
1
# 销毁过程
父beforeDestroy -> 子beforeDestroy -> 子destroyed -> 父destroyed
1
上次更新: 2022/05/12 14:57:53