I am attempting to display all elements of an array, but currently can only show the first line due to [0]. I want to show all items in the array.
<div class="description" v-for="item in sitePartVoice[0].part_attributes">
<small><strong>{{item.x_name}}</strong> {{item.x_value}}</small>
</div>
I have tried the following:
<div v-for="item in items">
<div class="description" v-for="item in sitePartVoice.part_attributes">
<small><strong>{{item.x_name}}</strong> {{item.x_value}}</small>
</div>
</div>
Unfortunately, I was not successful. Thank you!