From badfff8c4259da46b6a7ae8bb043e4b4f748003b Mon Sep 17 00:00:00 2001 From: Laurent Lecluse <laurent.lecluse@unicaen.fr> Date: Mon, 31 Mar 2025 15:07:13 +0200 Subject: [PATCH] =?UTF-8?q?Probl=C3=A8me=20d'affichage=20de=20mois?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/UCalendar.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/UCalendar.vue b/components/UCalendar.vue index a5f5869..9716848 100644 --- a/components/UCalendar.vue +++ b/components/UCalendar.vue @@ -111,7 +111,7 @@ export default { { let mois = []; - const dateObj = new Date(); + const dateObj = new Date(2000, 0, 1); for (let i = 1; i <= 12; i++) { dateObj.setMonth(i - 1); -- GitLab