[Vuejs]-Append response vue JS into component table

0👍

you need to loop over it and show using v-for

<tr v-for="data in datosAsistencia" :key="data.id">
    <td>{{ data.id }}</td>
    <td>{{ data.fecha }}</td>
    <td>{{ data.mensaje }}</td>
    <td>{{ data.estado }}</td>
</tr>

Leave a comment