VUE--当前页面请求定时器,其他页面不需要

mounted(){
  this.timer = setInterval(()=>{
    this.init()
  },1000)
  this.$once('hook:beforeDestroy', ()=>{
    clearInterval(this.timer)
  })
}    

 

posted @ 2021-06-01 11:49  代码是我蓝朋友  阅读(145)  评论(0编辑  收藏  举报