diff --git a/src/boot/filter.ts b/src/boot/filter.ts index 559600c..902a511 100644 --- a/src/boot/filter.ts +++ b/src/boot/filter.ts @@ -24,6 +24,6 @@ export default boot(({ Vue }) => { ? date.getSeconds().toString() : `0${date.getSeconds().toString()}`); } - return `${H}:${M}${S} ${formatDate(date)}`; + return `${formatDate(date)} ${H}:${M}${S}`; }); });