美文网首页
vuejs父子组件生命周期

vuejs父子组件生命周期

作者: 回不去的那些时光 | 来源:发表于2019-10-11 23:03 被阅读0次

加载阶段

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

更新阶段

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

销毁阶段

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

相关文章

网友评论

      本文标题:vuejs父子组件生命周期

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