vue在main.js文件中通过过滤器来格式化时间

 在main.js里面配置

// 格式化时间
Vue.filter('formatDate', function (value, fmt) {
  let getDate = new Date(value)
  let o = {
    'M+': getDate.getMonth() + 1,
    'd+': getDate.getDate(),
    'h+': getDate.getHours(),
    'm+': getDate.getMinutes(),
    's+': getDate.getSeconds(),
    'q+': Math.floor((getDate.getMonth() + 3) / 3),
    'S': getDate.getMilliseconds()
  }
  if (/(y+)/.test(fmt)) {
    fmt = fmt.replace(RegExp.$1, (getDate.getFullYear() + '').substr(4 - RegExp.$1.length))
  }
  for (let k in o) {
    if (new RegExp('(' + k + ')').test(fmt)) {
      fmt = fmt.replace(RegExp.$1, (RegExp.$1.length === 1) ? (o[k]) : (('00' + o[k]).substr(('' + o[k]).length)))
    }
  }
  return fmt
})

使用

{{时间戳 | formatDate('yyyy-MM-dd')}}   //年月日
{{时间戳 | formatDate('yyyy-MM-dd hh:mm:ss')}}   //年月日时分秒

 

你可能感兴趣的:(vue在main.js文件中通过过滤器来格式化时间)