1. 程式人生 > >Vue 生命週期LIFECYCLE是8個嗎?

Vue 生命週期LIFECYCLE是8個嗎?

vue生命週期鉤子個數是:11個

export const LIFECYCLE_HOOKS = [
  'beforeCreate',
  'created',
  'beforeMount',
  'mounted',
  'beforeUpdate',
  'updated',
  'beforeDestroy',
  'destroyed',
  'activated',
  'deactivated',
  'errorCaptured'
]

github地址:

https://github.com/vuejs/vue/blob/dev/src/shared/constants.js