js中new Date()获取的标准时间 转换成 例如: 2021-05-07

//调用
let valueData = this.timeFormat(new Data())
console.log(valueData,'当前时间字符串')

timeFormat(time) {
      // 时间格式化 2019-09-08
      let year = time.getFullYear();
      let month = time.getMonth() + 1 > 10 ? time.getMonth()+1 : '0'+(time.getMonth()+1);
      let day = time.getDate() > 10 ? time.getDate() : "0" + time.getDate();
      return year + "-" + month + "-" + day;
 },

 

你可能感兴趣的:(vue,js)