vue 的生命周期(代码)

Posted web半晨

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue 的生命周期(代码)相关的知识,希望对你有一定的参考价值。

页面加载执行四个生命周期函数

  • beforeCreate
  • created
  • beforeMount
  • mounted

退出页面执行两个函数

  • beforeDestroy
  • destroyed
beforeCreate() {
	console.log('beforeCreate');
}

created() {
	console.log('created');
}

beforeMount() {
	console.log('beforeMount');
}

mounted() {
	console.log('mounted');
}

beforeUpdate() {
	console.log('beforUpdate');
}

updated() {
	console.log('updated');
}

beforeDestroy() {
	console.log('beforeDestroy');
}

destroyed() {
	console.log('destroyed');
}

以上是关于vue 的生命周期(代码)的主要内容,如果未能解决你的问题,请参考以下文章

调用 replace() 时片段的生命周期是啥?

导航上的片段生命周期重叠

在不存在的片段上调用片段生命周期和 onCreate 的问题

Android 片段生命周期

vue 的生命周期(代码)

vue生命周期