I have a very large JSON object that I need to get into a tree but I'm unsure on how to do it. I'm using VueJs with Vuetify which has Treeview built in but I don't know how to actually get my data ready for the tree.
This is my data...
And what I need is this (obviously haven't included all the data)...
items: [
{
name: "Adboom",
children: [
{
name: "Jaydox LTD",
children: [
{
name: "beautifullyyoungskin.net"
},
{
name: "thinbodydiet.com"
},
{
name: "youthfulskincare.net"
}
]
}
]
},
{
name: "Adult",
children: [
{
name: "Occonti Ltd",
children: [
{
name: "datinginthe.eu (3d Secure)"
},
{
name: "datinginthe.eu (Non-3d)"
},
{
name: "datinginthe.eu - ST (Non-3d)"
},
{
name: "datinginthe.eu ST (3d Secure)"
}
]
}
]
}
]
