美文网首页
Vue.js倒计时方法

Vue.js倒计时方法

作者: 攻城仕 | 来源:发表于2021-11-17 10:56 被阅读0次
data:{
  btnTimes: 5, //设置倒计时5s
}
countdown: function(){
  this.timer = setInterval(()=>{
    this.btnTimes--;
    if(this.btnTimes == 0){
      clearInterval(this.timer);
      // do something...
    }
  },1000);
},

相关文章