vue-dropzone icon indicating copy to clipboard operation
vue-dropzone copied to clipboard

A Vue.js component for Dropzone.js - a drag’n’drop file uploads utility with image previews

Results 101 vue-dropzone issues
Sort by recently updated
recently updated
newest added

- [x] add support for base64 images. resolves #543 and resolves #474 - [x] add the `accepted` flag to manually added files. resolves #529 - [x] Add support for uppercase...

As i could not find an example for this i am raising a question. I am trying to upload files with a form. I already have a JSON object ready(with...

awaiting feedback

Hi guys! I'm having this issue while loading the component. I've followed all examples and docs and although I have the exact same configuration it is still not working. `Uncaught...

S3 error: ````js "errorCode": "MalformedPOSTRequest", "errorMessage": "The body of your POST request is not well-formed multipart/form-data.", ```` I've used this library successful in the past, in a new project I...

Hi, I'm using v-dropzone in a project and for error handling I need to use "vdropzone-error" event, but it doesn't fire. I tried replicating the problem : https://codesandbox.io/s/vdropzone-error-event-not-firing-lrx66?fontsize=14 ``` import...

resolved with 3.7

Hello there, I wanted to use `vdropzone-drag-start` and `vdropzone-drag-start` to show or hide a full-page dropzone but it seems that these events are not working. You can check the [demo...

More of a help question than a issue in fairness. I have a table with a set of CRUD actions, one being Edit. This displays a modal, and manually loads...

![TIM图片20200715140100](https://user-images.githubusercontent.com/32625852/87518252-9e44aa80-c6b2-11ea-9993-db1670303db7.png)

I'm trying to rename files before uploading to S3, using: ```js dropzoneOptions: { renameFile (file) { file.name = new Date().getTime() + '_' + file.name; // results in Uncaught TypeError: Cannot...