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

post on 2024-02-15 14:43:14
vue
vue生命周期
0310

1.加载渲染过程

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

2.子组件更新过程

父组件beforeUpdate->子组件beforeUpdate->子组件updated->父组件updated

3.父组件更新过程

父组件beforeUpdate->父组件updated

4.销毁过程

父组件beforeDestroy->子组件beforeDestroy->子组件destroyed->父组件destroyed

说点什么...
评论支持MarkDown格式

 / 1