js、vue、vue3.0、时间格式转换函数
时间戳转换时间格式
// 时间戳转任意时间格式 调用方法=> this.getDate(1626137166000, 'm-d H:i') this.getDate(1626137166000) 等等
getDate: function (date, format) {
date = date || new Date()
format = format || 'Y-m-d H:i:s'
return this.format(format, this.b
原创
2021-08-06 19:17:25 ·
661 阅读 ·
0 评论