站点图标 起风网

vue获取验证码倒计时

vue获取验证码倒计时缩略图
<template> <div> <el-button :disabled="disabled" @click="sendcode" class="sendcode">{{btntxt}}</el-button> </div></template> <script>export default { data() { return { disabled:false, time:5, btntxt:"发送验证码", }; }, methods: { sendcode(){ this.time=5; this.timer();  }, //发送手机验证码倒计时 timer() { if (this.time > 0) {  this.disabled=true;  this.time--;  this.btntxt=this.time+"秒";  setTimeout(this.timer, 1000); } else{  this.time=0;  this.btntxt="发送验证码";  this.disabled=false; } }, }}</script>  <style scoped>.el-button{ margin: 100px 50px;}</style>

  

文章转载于:https://www.cnblogs.com/wuliujun521/p/13476515.html

原著是一个有趣的人,若有侵权,请通知删除

退出移动版