vue使用定时器

methods:{
    timeToRefresh(){
	this.timer = setInterval(()=>{
	    // 调用的方法
	},1000)
    }
},
// 清除定时器
beforeDestroy(){
    clearInterval(this.timer)
    this.timer = null
}
posted @ 2020-01-10 16:23  zhongfang99  阅读(786)  评论(0编辑  收藏  举报