I'm struggling to properly display data in a table. My goal is to iterate through an object within another object inside an array and showcase the source, accountId, name, and sourceId in the table.
https://i.sstatic.net/VVIuc.png
<tbody class="network_Audience" v-for="(value, item) in networkAudiences" :key="item">
<tr v-for="(data, index) in item" :key="index">
<td class="text-center data-column">
{{ data.source }}
</td>
<td class="text-center data-column">
{{ data.accountId }}
</td>
<tdlass="text-center data-column">
{{ data.name }}
</td>
<td lass="text-center data-column">
{{ data.sourceId }}
</td>
</tr>
</tbody>
Could someone please share information on how I can achieve this? Thank you!