博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
VUE 注册验证码页面实例
阅读量:5105 次
发布时间:2019-06-13

本文共 1033 字,大约阅读时间需要 3 分钟。

代码如下  无css

 

export default {  name:'trans',  data:function(){    return{      time:5,      show:false,      CountDown:true,    }  },  methods:{    submit(){      alert("注册成功");    },    Time(){      let t =setInterval(()=>{        this.time--;        if(this.time==0){          clearInterval(t);          this.show=true;          this.CountDown=false;          this.tttime=5;        }      },1000)    },    TTTime(){      this.time=5      this.show=false;      this.CountDown=true;      let t=setInterval(()=>{        this.time--;        if(this.time==0){          clearInterval(t);          this.show=true;          this.CountDown=false;        }      },1000)    }  },  mounted() {    this.$refs.a1.focus();    this.Time();  },}

  

转载于:https://www.cnblogs.com/banyuege/p/9911889.html

你可能感兴趣的文章
Intel HEX 文件格式
查看>>
SIP服务器性能测试工具SIPp使用指导(转)
查看>>
php_扑克类
查看>>
回调没用,加上iframe提交表单
查看>>
(安卓)一般安卓开始界面 Loding 跳转 实例 ---亲测!
查看>>
Mysql 索引优化 - 1
查看>>
LeetCode(3) || Median of Two Sorted Arrays
查看>>
大话文本检测经典模型:EAST
查看>>
待整理
查看>>
一次动态sql查询订单数据的设计
查看>>
C# 类(10) 抽象类.
查看>>
Nginx+Keepalived 实现双击热备及负载均衡
查看>>
Vue_(组件通讯)子组件向父组件传值
查看>>
jvm参数
查看>>
我对前端MVC的理解
查看>>
Silverlight实用窍门系列:19.Silverlight调用webservice上传多个文件【附带源码实例】...
查看>>
2016.3.31考试心得
查看>>
mmap和MappedByteBuffer
查看>>
Linux的基本操作
查看>>
转-求解最大连续子数组的算法
查看>>