美文网首页
Vue3--篇18--生命周期

Vue3--篇18--生命周期

作者: 扶得一人醉如苏沐晨 | 来源:发表于2023-04-20 12:43 被阅读0次

    一、.生命周期

    • Vue3.0 中可以继续使用 Vue2.x 中的生命周期钩子,但有有两个被更名:
      • beforeDestroy改名为 beforeUnmount
      • destroyed改名为 unmounted
    • Vue3.0 也提供了 Composition API 形式的生命周期钩子,与 Vue2.x 中钩子对应关系如下:
      • beforeCreate===>setup()
      • created=======>setup()
      • beforeMount ===>onBeforeMount
      • mounted=======>onMounted
      • beforeUpdate===>onBeforeUpdate
      • updated =======>onUpdated
      • beforeUnmount ==>onBeforeUnmount
      • unmounted =====>onUnmounted

    相关文章

      网友评论

          本文标题:Vue3--篇18--生命周期

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