Vue项目实例--filter过滤器的应用(毫秒转化成年月日时分秒)

// 时间过滤器,毫秒转换成年月日时分秒
Vue.filter('dateFormate', function(originVal) {
  const dt = new Date(originVal)
  const y = dt.getFullYear()
  const m = (dt.getMonth() + 1 + '').padStart(2, '0')
  const d = (dt.getDate() + '').padStart(2, '0')
  const hh = (dt.getHours() + '').padStart(2, '0')
  const mm = (dt.getMinutes() + '').padStart(2, '0')
  const ss = (dt.getSeconds() + '').padStart(2, '0')
  return `${y}-${m}-${d} ${hh}:${mm}:${ss}`
})

应用(vue组件中):


    

 

你可能感兴趣的:(前端,filter)