vue-bootstrap-table icon indicating copy to clipboard operation
vue-bootstrap-table copied to clipboard

Nested Objects support

Open mohnark opened this issue 3 years ago • 0 comments

If I have an Object :

{
    id: 123, 
    name: "abc", 
    properties: {
        color:"green" ,
        email: "[email protected]"
    }
}

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?

mohnark avatar Sep 20 '22 08:09 mohnark