vue中获取当前时间返回(yyyy-mm-dd)的格式

vue中获取当前时间返回(yyyy-mm-dd)的格式,第1张

获取当前时间

data() {
    return {
      value: this.getDate(),
    };
},

methods: {
	getDate() {
      const nowDate = new Date();
      const date = {
        year: nowDate.getFullYear(),
        month: nowDate.getMonth() + 1,
        date: nowDate.getDate(),
      };
      const newmonth = date.month >= 10 ? date.month : "0" + date.month;
      const day = date.date >= 10 ? date.date : "0" + date.date;
      return date.year + "-" + newmonth + "-" + day;
    },
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1322937.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-12
下一篇 2022-06-12

发表评论

登录后才能评论

评论列表(0条)

保存