美文网首页
vue获取当前时间(年月日时分秒)

vue获取当前时间(年月日时分秒)

作者: Henry01 | 来源:发表于2022-07-26 15:35 被阅读0次
    methods: {
        getCurrentTime() {
            //获取当前时间并打印
            var _this = 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();
          _this.gettime = yy+'/'+mm+'/'+dd+' '+hh+':'+mf+':'+ss;
          console.log(_this.gettime)  
        }
    }
    

    相关文章

      网友评论

          本文标题:vue获取当前时间(年月日时分秒)

          本文链接:https://www.haomeiwen.com/subject/abmoirtx.html