如何在 filepond 中添加下载图片或 Pdf/any 文档?

How to add download image or Pdf/any doc in filepond?

如何在 filepond 中添加下载图片或 Pdf/any 文档。我正在使用带有 vue 框架的 Filepond。当我点击图像缩略图时,我还需要一个大的图像预览如何使用 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>

这个第三方插件添加了一个下载按钮https://github.com/nielsboogaard/filepond-plugin-get-file

当用户单击文件项时,您可以使用 @activatefile 到 运行 逻辑。 https://pqina.nl/filepond/docs/patterns/api/filepond-instance/#callbacks