欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

基于vue实现图片验证码倒计时60s功能

程序员文章站 2022-07-06 18:25:00
1.基于vue实现图片验证码 html:

1.基于vue实现图片验证码

html:

   <div class="formitem pr">
       <img src="../../image/icon2.png" alt="">
       <input type="text" placeholder="请输入验证码">
       <img :src="identifyingcode" alt="图文验证码" class="identifyingcode" @click="updateidentifyingcode(true)">
     </div>

js:

基于vue实现图片验证码倒计时60s功能

2.vue实现验证码倒计时60s

html:

 <div class="formitem">
      <img src="../../image/icon2.png" alt="">
      <input type="text" placeholder="请输入验证码">
      <button class="button" type="button" name="button" @click="sendcode()" v-show="show">获取验证码</button>
      <button class="button codebtn" type="button" name="button" v-show="!show">{{sum}}s</button>
   </div>

js:

基于vue实现图片验证码倒计时60s功能

效果图:

基于vue实现图片验证码倒计时60s功能

基于vue实现图片验证码倒计时60s功能

总结

以上所述是小编给大家介绍的基于vue实现图片验证码倒计时60s功能,希望对大家有所帮助