0
I’m using the b-table
of Bootstrap of Vue.
I have an object in this format:
And the table is populating like this:
It is throwing the whole object into the field, as we can see in these circular fields, but I would like to be able to choose the items to be displayed as in the fields with arrow. How do I access the object levels?
Code to create table:
<div class="driver-admin">
<b-table hover striped :items="drivers"></b-table>
</div>
It’s just that in this object of yours, there’s another object inside it and an array. So hint like this. Address and Document have to treat differently, for example being just other normal fields in the object (such as state and city).
– Edward Ramos