chore: make prop optional in Datepicker

This commit is contained in:
kolaente 2025-05-13 21:20:20 +02:00
parent de26f32758
commit fcaf5abbf4
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ import {useI18n} from 'vue-i18n'
const props = withDefaults(defineProps<{
modelValue: Date | null | string,
chooseDateLabel: string,
chooseDateLabel?: string,
disabled?: boolean,
}>(), {
modelValue: null,