[Vuejs]-How to display data from backend?

0👍

It looks like clients is currently an array, you should loop through the array and display the name of each client as bellow.

<template>
    <table>
        <tr>
            <th>Name</th>
        </tr>
        <tr for"client in clients" :key="client.id">
            <td>{{ client.name }}</td>
        </tr>
    </table>
</template>

Leave a comment