fix: 编译报错

This commit is contained in:
dataeaseShu 2024-10-30 16:12:01 +08:00
parent cf6d0e374d
commit 2cac54a991

View File

@ -39,9 +39,9 @@ const props = defineProps({
} }
}, },
timeGranularityMultiple: { timeGranularityMultiple: {
type: Object as PropType<DatePickType>, type: String as PropType<DatePickType>,
default: () => { default: () => {
return { type: 'yearrange' } as PropType<DatePickType> return 'yearrange'
} }
} }
}) })