[Vuejs]-I want to display a pokemon image that I get from the API, but I only get the url of the image and I don't know how to do it

1👍

You need to put it in img tag

<img :src="pokemonId.image" />

Leave a comment