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


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

    • 加载渲染过程

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

    注意 mounted 不会保证所有的子组件也都一起被挂载。如果你希望等到整个视图都渲染完毕,可以在 mounted 内部使用 vm.$nextTick

    mounted: function () {
      this.$nextTick(function () {
        // Code that will run only after the
        // entire view has been rendered
      })
    }
    • 子组件更新过程

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

    • 父组件更新过程

      父 beforeUpdate -> 父 updated

    • 销毁过程

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

     

  • 相关阅读:
    高频交易程序竟然是饿罗斯人开发的?
    系统功能在用户测试阶段被推翻
    去新华书店有感
    金桔
    结香
    金钟花
    金丝桃
    箬竹
    香茶菜
    水果兰
  • 原文地址:https://www.cnblogs.com/mengfangui/p/12546520.html
Copyright © 2020-2023  润新知