Vue 获取当前时间并格式化

Vue 获取当前时间并格式化

现在的代码,一家原创,万家抄袭,嗯,我也是…

直接就是大代码一顿狂粘!!啪啪啪!用去吧!

/**
 * 获取当前时间
 * 格式YYYY-MM-DD
 */
Vue.prototype.getNowFormatDate = function() {
    
    
  var date = new Date();
  var seperator1 = "-";
  var year = date.getFullYear();
  var month = date.getMonth() + 1;
  var strDate = date.getDate();
  if (month >= 1 && month <= 9) {
    
    
    month = "0" + month;
  }
  if (strDate >= 0 && strDate <= 9) {
    
    
    strDate = "0" + strDate;
  }
  var currentdate = year + seperator1 + month + seperator1 + strDate;
  return currentdate;
};

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/weixin_42776111/article/details/107634984