Answer the question
In order to leave comments, you need to log in
How to get property in 1 loop?
There is json
<table>
<thead>
<tr>
<th scope="col">Наименование</th>
<th scope="col">Калибр</th>
<th scope="col">Урон</th>
<th scope="col">Бронепробитие</th>
<th scope="col">Повреждение брони</th>
<th scope="col">Вероятность фрагментации</th>
<th scope="col">Скорость (м/сек)</th>
<th scope="col">Вероятность рикошет</th>
</tr>
</thead>
<tbody>
<div v-for="data in ammo_data" :key="data.caliber">
<tr v-for="items in data.items" :key="items.name">
<td data-label="Наименование">{{items.name}}</td>
<td data-label="Калибр">{{items.caliber}}</td>
<td data-label="Урон">{{items.damage}}</td>
<td data-label="Бронепробитие">{{items.arm_pentra}}</td>
<td data-label="Повреждение брони">{{items.arm_damage}}</td>
<td data-label="Вероятность фрагментации">{{items.bullet_frag}}</td>
<td data-label="Скорость (м/сек)">{{items.speed}}</td>
<td data-label="Вероятность рикошет">{{items.ricochet}}</td>
</tr>
</div>
</tbody>
</table>
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question