我可以知道如何在 vue-good-table 中正确访问和连接我的数据吗?数据未出现在表格中。
这是我的代码:
<vue-good-table
:columns="columns"
:rows="bigDataInformationList"
>
<template v-slot:rows="data">
<td>{{data.row.dataLocationSet.dataLocCity}}</td>
<td>{{data.row.dataProfileSet.dataProfileLastName}}</td>
<td>{{data.row.dataServicesSet[0].dataService1 ? "Yes" : "No"}}</td>
</template>
</vue-good-table>
columns: [
{
label: 'Data City Located',
field: 'dataLocCity', -->not appearing in the table :(
},
{
label: 'Data Profile 01',
field: 'dataProfileLastName', -->not appearing in the table :(
},
{
label: 'Data Service 01',
field: 'dataService1', -->not appearing in the table :(
},
],