https://rowanwins.github.io/vue-dropzone/docs/dist/index.html#/installation

Vue-Dropzone 在 Vue 中的使用

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" }
      }
    }
  }
}
作者:Jeebiz  创建时间:2020-03-20 00:35
 更新时间:2024-07-02 22:15