其他分享
首页 > 其他分享> > vue获取当前日期及时间 一个简单的方法

vue获取当前日期及时间 一个简单的方法

作者:互联网

 getTime(){
      var that = this;
    let yy = new Date().getFullYear();
    let mm = new Date().getMonth()+1;
    let dd = new Date().getDate();
    let hh = new Date().getHours();
    let mf = new Date().getMinutes()<10 ? '0'+new Date().getMinutes() : new Date().getMinutes();
    let ss = new Date().getSeconds()<10 ? '0'+new Date().getSeconds() : new Date().getSeconds();
    that.gettime = yy+'-'+mm+'-'+dd+' '+hh+':'+mf+':'+ss;
    //console.log(that.gettime)  
      //赋值你的变量
       that.loginForm.createTime= that.gettime
    },

在mounted直接调用就可以了。。。

标签:vue,getMinutes,getTime,getHours,获取,日期,let,Date,new
来源: https://blog.csdn.net/qq_42174597/article/details/121008919