I can use <b-table-simple>
with GraphQL queries and it works fine, for example:
<b-table-simple>
<b-tbody>
<b-tr role="row" v-for="page in $page.allGoogleSheet.edges" :key="page.id">
<b-td>
{{page.node.Name}}
</b-td>
<b-td>
{{page.node.Age}}
</b-td>
<b-td>
{{page.node.Height}}
</b-td>
</b-tr>
</b-tbody>
</b-table-simple>
But how can i do this with <b-table>
?