filters: {
time: function time(value) {
const now = new Date(value)
const y = now.getFullYear()
const m = now.getMonth() + 1
const d = now.getDate()
return `${y}-${m < 10 ? `0${m}` : m}-${d < 10 ? `0${d}` : d} ${now
.toTimeString()
.substr(0, 8)}`
}
},
{{ time1 | time }}