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

Error: dinamic multiple prop

Open GabrielfLuchtenberg opened this issue 7 years ago • 2 comments

Hello,

I've experienced problems using :multipe="multiple", it changes my explorer option to select multiple files, but when I submit multiple files to server, it only send one Post

<file-upload class="btn btn-primary button-uploads"
		     extensions="gif,jpg,jpeg,png,webp"
		     accept="image/png,image/gif,image/jpeg,image/webp"
		     :post-action="postAction"
		     :multiple="multiple"
	             :size="1024 * 1024 * 15"
                     :drop="droppable"
		     name="imagens"
		     v-model="files"
		     @input-file="updatedValue"
		     ref="upload">
                             <i class="fa fa-plus"></i>Escolha o arquivo
</file-upload>

GabrielfLuchtenberg avatar Feb 22 '18 13:02 GabrielfLuchtenberg

multiple props must be boolean.

yoss1209 avatar Jun 10 '19 07:06 yoss1209

@yoss1209 thanks :D

GabrielfLuchtenberg avatar Jun 11 '19 16:06 GabrielfLuchtenberg