vue-upload-component icon indicating copy to clipboard operation
vue-upload-component copied to clipboard

Can we allow pdf with images in :accept key validation ?

Open piyushSinghalDemo opened this issue 5 years ago • 0 comments

I am trying to allow images and pdf only through this component, but it only allow image type not pdf.is there any provision to allow pdf upload with images i am writing code like

<file-upload class="btn btn-primary" :post-action="s3Url" :extensions="gif,jpg,jpeg,png,webp" :accept="image/png,image/gif,image/jpeg,image/webp" :headers="headers" :size="1024 * 1024 * 10" v-model="files" ref="upload" :input-id="refName" @input-file="inputFile" @input-filter="inputFilter" :multiple="multiple" :drop="drop" >

here is there any possibility if i will add :accept="image/png,image/gif,image/jpeg,image/webp,image/pdf" and it will allow pdf upload as well

piyushSinghalDemo avatar Nov 29 '19 08:11 piyushSinghalDemo