How do i display a array inside of an array in VUE?
I've tried it with the code below, but is doesn't seem to be right.
<table class="table table-border">
<thead>
<tr>
<th v-for="(name, index) in attributes" v-html="attributes[index].name"></th>
</tr>
</thead>
<tr v-for="(values, index) in attributes">
<td v-for="(name, index) in values" v-html="values[index].name"></td>
</tr></table>