jbaysolutions / vue2-bootstrap-table

A sortable and searchable table, as a Vue2 component, using bootstrap styling.
118 stars 39 forks source link

Nested Objects support #36

Open mohnark opened 2 years ago

mohnark commented 2 years ago

If I have an Object :

{
    id: 123, 
    name: "abc", 
    properties: {
        color:"green" ,
        email: "xyz@email.com"
    }
}
I want to create a table with id, name and color only and not show email like this: ID NAME COLOR
123 abc green
234 xyz red

How can I do this?