frontEnd_book icon indicating copy to clipboard operation
frontEnd_book copied to clipboard

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

Open hanyueqiang opened this issue 4 years ago • 0 comments

  • 加载渲染过程 父beforeCreate->父created->父beforeMount->子beforeCreate->子created->子beforeMount->子mounted->父mounted
  • 子组件更新过程 父beforeUpdate->子beforeUpdate->子updated->父updated
  • 父组件更新过程 父beforeUpdate->父updated
  • 销毁过程 父beforeDestroy->子beforeDestroy->子destroyed->父destroyed

参考:https://github.com/Advanced-Frontend/Daily-Interview-Question/issues/128

hanyueqiang avatar Dec 20 '20 15:12 hanyueqiang