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;
};

Vue 获取当前时间并格式化
Vue 获取当前时间并格式化