this is my object
my code is this:
<table class="table">
<thead>
<tr>
<th>id</th>
<th>gana</th>
</tr>
</thead>
<tbody>
<tr v-for="values in juegosYlogros" :key="values.id">
<td>{{values.id}}</td>
<td>{{values.ganajuego.0.odds}}</td>
</tr>
</tbody>
</table>