Vuejs的生命周期函数

vue中所有的钩子函数:

  • beforeCreate(创建前)
  • created(创建后)
  • beforeMount(载入前)
  • mounted(载入后)
  • beforeUpdate(更新前)
  • updated(更新后)
  • beforeDestroy(销毁前)
  • destroyed(销毁后)

vue官方生命周期图

vue生命周期图

生命周期代码及执行效果


vue生命周期执行效果

更新时间: 2018-07-11

你可能感兴趣的:(Vuejs的生命周期函数)