码迷,mamicode.com
首页 > 其他好文 > 详细

初始Vue3.0(5)——生命周期

时间:2021-02-27 13:02:42      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:hook   date   apt   script   for   初始   trigger   hooks   htm   

Vue3 生命周期

生命周期

在 setup 中使用的 hook 名称和原来生命周期的对应关系

  • beforeCreate -> 不需要
  • created -> 不需要
  • beforeMount -> onBeforeMount
  • mounted -> onMounted
  • beforeUpdate -> onBeforeUpdate
  • updated -> onUpdated
  • beforeUnmount -> onBeforeUnmount
  • unmounted -> onUnmounted
  • errorCaptured -> onErrorCaptured
  • renderTracked -> onRenderTracked
  • renderTriggered -> onRenderTriggered
setup() {
  onMounted(() => {
    console.log(‘mounted‘)
  })
  onUpdated(() => {
    console.log(‘updated‘)
  })
  onRenderTriggered((event) => {
    console.log(event)
  })
}

初始Vue3.0(5)——生命周期

标签:hook   date   apt   script   for   初始   trigger   hooks   htm   

原文地址:https://www.cnblogs.com/duet/p/14452205.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!