Reddit – Dive into anything

Hi there, does anybody know how to best handle multiple files upload with Element UI? Using the el-upload component I’ve set the attribute ‘multiple’ and it works, but I also want to check if all the files sizes are correct, and I check this on the before-upload hook, Wich returns false in case the file is bigger than the value I set on my settings and does not upload the file, great. Now I want to tell the user which files couldn’t be uploaded… So everytime a files is bigger I send a messages with the file name. The problem is that every message is overlapping the next one so I can’t see the other ones. I have to keep in mind that the hook will be executed for every single file, the success event as well, I haven’t find a way to know when the whole upload is done so I can show only once which files couldn’t be uploaded…any work around ideas?