欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vue清除定时器,A页面跳转到B页面----定时器

程序员文章站 2024-02-14 13:08:16
...

定时器

this.timer = setInterval(() => {
						this.second--
						if (this.second === 0) {
							this.second = 60
							this.check = true
							clearInterval(time)
						} 
					}, 1000);

我们在data里面声明变量

                 timer: null,
	              check
				second: 60,

最后别忘了清除定时器

beforeDestroy(){
			clearInterval(this.timer)
		},
相关标签: 小程序