fix: 编译报错

This commit is contained in:
dataeaseShu 2024-10-30 16:17:53 +08:00
parent 2cac54a991
commit ab7dc2fb15

View File

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