美文网首页
Vue 的父组件和子组件生命周期钩子函数执行顺序?

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

作者: 东方三篇 | 来源:发表于2021-10-29 11:11 被阅读0次

Vue 的父组件和子组件生命周期钩子函数执行顺序可以归类为以下 4 部分:

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

相关文章

网友评论

      本文标题:Vue 的父组件和子组件生命周期钩子函数执行顺序?

      本文链接:https://www.haomeiwen.com/subject/oldialtx.html