下载:
npm i moment
引入:
import moment from 'moment'
使用:
// 转换时间戳
formatDate(value) {
const stamp = new Date(value)
const time = moment(stamp).format('YYYY-MM-DD HH:mm:ss')
return time
},
ok.
下载:
npm i moment
引入:
import moment from 'moment'
使用:
// 转换时间戳
formatDate(value) {
const stamp = new Date(value)
const time = moment(stamp).format('YYYY-MM-DD HH:mm:ss')
return time
},
ok.