diff --git a/packages/client/src/widgets/calendar.vue b/packages/client/src/widgets/calendar.vue index c6a69b3fb..f5cee5355 100644 --- a/packages/client/src/widgets/calendar.vue +++ b/packages/client/src/widgets/calendar.vue @@ -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,