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

 

 

生命周期解读:

https://juejin.im/post/5b41bdef6fb9a04fe63765f1

转载于:https://www.cnblogs.com/mengfangui/p/9969882.html

你可能感兴趣的:(Vue 生命周期LIFECYCLE是8个吗?)