0👍
Your table markup should be as follows:
<template>
<table>
<thead>
<th>
Header
</th>
</thead>
<tbody>
<tr v-for="(x, index) in Arr" :key="index">
<td>
{{x.struct.extra.length}}
</td>
</tr>
</tbody>
</table>
</template>
- [Vuejs]-Data Value loads only on reloading, while using VueJs v-bind
- [Vuejs]-Laravel vue pusher – broadcasting on private channels not working
Source:stackexchange.com