vue setInterval启动与停止

data () {
    return {
      otimer:null,
    }
},
mounted () {
      this.otimer = setInterval(() => {
        //逻辑
      }, 6000);
      this.$once('hook:beforeDestroy', () => {//页面关闭
        console.log('自闭了')
        clearInterval(this.otimer);//停止
      });
  },
Logo

前往低代码交流专区

更多推荐