0👍
✅
Instead of a v-bind="image in imageUrlList"
you should use a v-for="image in imageUrlList"
,
Also I do not see the reason for using Array.prototype.push.apply(...)
With vue you should avoid doing that because you will not trigger the reactive data to change the DOM.
Simply do :
this.imageList.push(selectedFiles);
Source:stackexchange.com