I need to create an Ember component to select a file. My page will include multiple \"upload component\"
I have read a post trying to implement that: (https://stackoverf
In case of uploading multiple files, you may want to use
{{input type='file' multiple='true' valueBinding='file'}}
^^^^
This is a solution that you would use in normal HTML upload.
Additionally, you can use 'valueBinding' which will allow you to set up an observer against that value in your component.