简单的vue时间过滤器
Vue.filter("dateFormat", dtStr => { const dt = new Date(dtStr); const y = dt.getFullYear(); const m = dt.getMonth() + 1; const d = dt.getDate(); const hh = dt.getHours(); const mm = dt.getMinutes(); const ss = dt.getSeconds();