ThinkChat🤖让你学习和工作更高效,注册即送10W Token,即刻开启你的AI之旅 广告
[TOC] #### Vue 实现登录获取验证码倒计时 ~~~ validateBtn() { let time = 60; let timer = setInterval(() => { if (time === 0) { clearInterval(timer); this.btnTitle = "获取验证码"; this.disabled = false; } else { // 倒计时 this.btnTitle = time + "秒后重试"; this.disabled = true; time--; } }, 1000); }, ~~~