fix: 修复 wd-upload 组件的 formData 属性的 ts 类型为 void 的问题 (#1106)

This commit is contained in:
量子蔷薇 2025-06-13 12:33:45 +08:00 committed by GitHub
parent 1938d92889
commit 60261374ac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -215,7 +215,7 @@ export const uploadProps = {
* object * object
* {} * {}
*/ */
formData: { type: Object as PropType<UploadFormData>, default: () => {} }, formData: { type: Object as PropType<UploadFormData>, default: () => ({}) },
/** /**
* *
* function({index,imgList}) * function({index,imgList})