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

Cannot integrate vue2-dropzone

Open jwn25 opened this issue 6 years ago • 1 comments

Followed steps written on documentation.

  • npm install vue2-dropzone
<vue-dropzone ref="myVueDropzone" id="dropzone" :options="dropzoneOptions"></vue-dropzone>
import vue2Dropzone from 'vue2-dropzone'
import 'vue2-dropzone/dist/vue2Dropzone.min.css'
export default {
  name: 'app',
  components: {
    vueDropzone: vue2Dropzone
  },
  data: function () {
    return {
      dropzoneOptions: {
          url: 'https://httpbin.org/post',
          thumbnailWidth: 150,
          maxFilesize: 0.5,
          headers: { "My-Awesome-Header": "header value" }
      }
    }
  }
}

After doing all these got this error

Screenshot from 2019-11-21 00-01-43

jwn25 avatar Nov 20 '19 18:11 jwn25

Hard to say what's going on here - did you ever work it out?

rowanwins avatar May 03 '20 14:05 rowanwins