创建baseFilters.js文件(日期格式化)
import Vue from 'vue';
// 时间戳格式化2021-08-26 17:59:05
Vue.filter('dateFormat', (value) => {
var date = new Date(value); //时间戳为10位需*1000,时间戳为13位的话不需乘1000
var Y = date.getFullYear() + '-';
var M =
(date.getMonth() + 1 < 10
? '0' + (date.getMonth() + 1)
: date.getMonth() + 1) + '-';
var D = date.getDate() < 10 ? '0' + date.getDate() : date.getDate();
var h =
(date.getHours() < 10 ? '0' + date.getHours() : date.getHours()) + ':';
var m =
(date.getMinutes() < 10 ? '0' + date.getMinutes() : date.getMinutes()) +
':';
var s =
date.getSeconds() < 10 ? '0' + date.getSeconds() : date.getSeconds();
return Y + M + D + h + m + s; //时分秒可以根据自己的需求加上
},
);
main.js中引入
import '@/filters/baseFilters';
组件中直接使用即可