So I have an array of objects from json that looks like this:
I'm generating a <ul> and for each <li> I get an ID from an API:
<ul>
<li v-for="genre in movie.genre_ids">
{{ genre }} // 19
</li>
</ul>
I do not want to display the number, I would like the name of the genre, which is a sibling of the object that contains that ID.
How can I do that?
