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)