GabrielTura
GabrielTura

Reputation: 73

How can I upload an image-only file with Vue.Js?

so my question is something that should be simple but I couldn't find any decent material to help me with this question, I just want the user to be able to send only image files on Vue.Js, someone who can help me? I'm not much of a question here because I can always find something to help me, but it wasn't this time. Sorry for my English, I'm Brazilian and I don't have much practice hehehe

Upvotes: 3

Views: 2852

Answers (1)

Majed Badawi
Majed Badawi

Reputation: 28434

You can do this using pure HTML as follows:

<input type="file" name="img" accept="image/x-png,image/gif,image/jpeg" />

Upvotes: 10

Related Questions