vue实现验证码倒计时60秒的具体代码
<span v-show="show" @click="getCode">获取验证码</span>
<span v-show="!show" class="count">{{count}} s</span>
data(){
return {
show: true,
count: '',
timer: null,
}
},
methods:{
getCode(){
const TIME_COUNT = 60;
...
转载
2020-08-26 17:12:13 ·
468 阅读 ·
0 评论