0
点赞
收藏
分享

微信扫一扫

vue全局过滤时间格式

elvinyang 2022-08-05 阅读 66

在main.js中:

Vue.filter('dateFormat', 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}`
})

  调用:

<template slot-scope="scope">
{{scope.row.add_time | dateFormat}}
</template>

  



举报

相关推荐

0 条评论