From 81bff7818d7f46e2eac9a5d5f1364d6523198a53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bahad=C4=B1r=20Sofuo=C4=9Flu?= Date: Mon, 2 Jan 2023 12:45:28 +0300 Subject: [PATCH] Calendar model value type fixed --- components/calendar/Calendar.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 };