vue3-dropzone
vue3-dropzone copied to clipboard
HTML5 file drag-drop zone with vue3
When using Vue 3 with typescript support, adding `v-bind="getRootProps()"` to the root element is causing the following type error: ``` Type '{ style: undefined; tabIndex?: number | undefined; onKeyDown: ComposeFunction...
Again ! Guys can you split the getRootProps into two parts one just for drag drop files and the other one for selecting a file because mixing those two make...
I defined that it is accept only pdf and it does accept only pdf files. But even when I throw a pdf file "isDragReject" is true. You can see it...
i have to errors on typescript type declaration when using in typescript 
This PR removes `onClick` handler from `getRootProps`. This allows to have a click event with `getInputProps` on a particular element (button) and use wider area for `getRootProps` to enable dropzone.
Currently, the `onDrop` function in `vue3-dropzone` has the following type signature: ```ts onDrop: (acceptedFiles: any[], rejectReasons: FileRejectReason[], event: Event) => void ``` This ensures: * **Better Type Safety** - Ensures...
options 中 maxSize值更新,useDropzone里值并不会更新