import dayjs from "dayjs"; export default { format(date, template) { return dayjs(date).format(template) }, formatH(date){ if (date) { return this.format(date, 'HH:mm:ss') } else { return '--:--:--' } }, formatYM(date){ if (date) { return this.format(date, 'YYYY-MM') } else { return '----/--' } }, formatYMD(date){ if (date) { return this.format(date, 'YYYY-MM-DD') } else { return '----/--/--' } }, formatYMDH(date){ if (date) { return this.format(date, 'YYYY-MM-DD HH:mm:ss') } else { return '----/--/-- --:--:--' } }, }