Open gutmanl opened 3 years ago
There are 2 events emitted with autoUpload: upload
and upload:error
. Both contains an array of responses.
<VueFileAgent
:uploadUrl="'/api/upload'"
:multiple="true"
:deletable="true"
v-model="files"
@upload="uploadResponse('success', $event)"
@upload:error="uploadResponse('error', $event)"
></VueFileAgent>
Hi everyone,
I'm working on a project where I need to use the server's response data after uploading a file. Is there any way to get it here without manually implementing the upload? I haven't seen any events that would be usable for this.