This commit is contained in:
ThinaticSystem 2022-04-01 02:29:21 +09:00
parent 59c00da57b
commit eeb97d1509

View File

@ -76,8 +76,13 @@ const tick = () => {
const ny = now.getFullYear();
year.value = ny;
month.value = nm + 1;
day.value = nd;
if (nm + 1 === 4 && nd === 1) { //
month.value = 3;
day.value = 32;
} else { //
month.value = nm + 1;
day.value = nd;
}
weekDay.value = [
i18n.ts._weekday.sunday,
i18n.ts._weekday.monday,