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

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

作者: 小北呀_ | 来源:发表于2021-06-16 09:28 被阅读0次

加载渲染过程

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

子组件更新过程

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

父组件更新过程

父 beforeUpdate -> 父 updated

销毁过程

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

相关文章

网友评论

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

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