diff --git a/components/calendar/Calendar.d.ts b/components/calendar/Calendar.d.ts index 3d528eb98..2e872f30f 100755 --- a/components/calendar/Calendar.d.ts +++ b/components/calendar/Calendar.d.ts @@ -1,7 +1,7 @@ import { HTMLAttributes, InputHTMLAttributes, VNode } from 'vue'; import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers'; -type CalendarValueType = Date | Date[] | undefined; +type CalendarValueType = string | Date | string[] | Date[] | undefined; type CalendarSlotDateType = { day: number; month: number; year: number; today: boolean; selectable: boolean };