From 36e0d933c00f2d6e14e350d14c8780ba0d1b5122 Mon Sep 17 00:00:00 2001 From: tristan Date: Tue, 9 Jun 2026 12:06:17 +0200 Subject: [PATCH] docs(date) : exemples saisie manuelle (playground + story) --- .playground/pages/composant/date/date.vue | 10 ++++++++++ app/story/date/datePicker.story.vue | 11 +++++++++++ 2 files changed, 21 insertions(+) diff --git a/.playground/pages/composant/date/date.vue b/.playground/pages/composant/date/date.vue index ec73c15..7d50df5 100644 --- a/.playground/pages/composant/date/date.vue +++ b/.playground/pages/composant/date/date.vue @@ -13,6 +13,15 @@

Valeur (ISO) : {{ value ?? 'null' }}

+ +
+

Valeur éditable (ISO) : {{ editableValue ?? 'null' }}

+
+
+

Saisie clavier (editable)

+ +
+

Non effaçable

(null) const initialValue = ref(todayIso) const boundedValue = ref(null) const errorValue = ref(null) +const editableValue = ref(null)