1.0.2 • Published 1 year ago

dropzone-vue3 v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

vue-dropzone

Drop in replacement of vue2-dropzone that supports vue3

A Vue component for file uploads, powered by Dropzone.js. Check out the demo.


npm.io

Development

# install your dependencies
npm install

# install vue-dropzone
npm install dropzone-vue3

(or with yarn)

yarn add dropzone-vue3

Usage

<template>
  <vue-dropzone
    ref="myVueDropzone" 
    id="dropzone" 
    :options="dropzoneOptions"
  />
</template>  
<script>
import vueDropzone from 'dropzone-vue3'

export default {
  components: {
    vueDropzone,
  },
  data () {
    return {
      dropzoneOptions: {
        url: 'https://httpbin.org/post',
        thumbnailWidth: 150,
        maxFilesize: 0.5,
        headers: { "My-Awesome-Header": "header value" }
      }
    }
  }
  ...
}

NPM vue3 NPM Downloads