vue-dropzone
vue-dropzone copied to clipboard
A Vue.js component for Dropzone.js - a drag’n’drop file uploads utility with image previews
Is there a way to do this? From the Dropzone docs: > If you don’t like the default browser modals for confirm calls, you can handle them yourself by overwriting...
I am trying to display images using the manuallyAddFile() method. However, I could not display the images for some reason. Here are my codes: *Do Note that I am passing...
   data.filelist = []; The console has output progress every time the file is uploaded, but the HTML does not render progress bar; Do not know why?
Followed steps written on documentation. - npm install vue2-dropzone ``` import vue2Dropzone from 'vue2-dropzone' import 'vue2-dropzone/dist/vue2Dropzone.min.css' export default { name: 'app', components: { vueDropzone: vue2Dropzone }, data: function () {...
Is there a way to check max file size for all files together? For example, we have max file size set to 20MB so the user can attach either one...
Can anyone let me know how can I change the remove link position? As u can see below I am having a custom delete button which I want to make...
I want to prevent user from uploading multiple files, things I tried: 1. I tried to set `uploadMultiple` to false but still no results. 2. I tried to invoke `disable`...
How can I manually add base64 string in the dropzone?
I set the `addRemoveLinks` option to `true` on my `vue-dropzone` component. The remove's link appear and clicking it cause the upload file to be removed from the widget, but still...
version : `3.6.0` thank for awesome package. i add files manually and its ok 👍 ```js nazer.project_pictures.forEach(element => { this.nazerManuallyUpload(element.file, element.url); }); ```  but when i want to use...