3

How to add download image or Pdf/any doc in filepond. I am using Filepond with vue framework. i also need a big preview of image when i click on image thumbnail how to achieve this with filepond?

<file-pond
            ref="pond"
            class-name="my-pond"
            label-idle="Drop files here..."
            :allow-multiple="allowMultiple"
            accepted-file-types="image/jpeg, image/png, application/pdf,"
            :files="myFiles"
            v-on:init="handleFilePondInit"
            @addfile="onaddfile"
            @removefile="onRemoveFile"
        >
        </file-pond>
Neha
  • 2,136
  • 5
  • 21
  • 50

1 Answers1

4

This third party plugin adds a download button https://github.com/nielsboogaard/filepond-plugin-get-file

You can use @activatefile to run logic when the user clicks a file item. https://pqina.nl/filepond/docs/patterns/api/filepond-instance/#callbacks

Rik
  • 3,328
  • 1
  • 20
  • 23