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... https://tpcrm.totalprocessing.com/api/get-channels
And what I need is this (obviously haven't included all the data)
items: [
{
name: "Adboom",
id: "8ac9a4cb64b143910164b1b2ab0305db"
children: [
{
name: "Jaydox LTD",
id: "8ac9a4cb64b143910164b1b3009b05e2"
children: [
{
name: "beautifullyyoungskin.net"
id: "8ac9a4cb64b143910164b1b8004b063a"
},
{
name: "thinbodydiet.com"
id: "8ac9a4cb64b143910164b1b74af10630"
},
{
name: "youthfulskincare.net"
id: "8ac9a4cb64b143910164b1b77ba70634"
}
]
}
]
},
{
name: "Adult",
id: "8ac9a4c96489324601649354068034ab"
children: [
{
name: "Occonti Ltd",
id: "8ac9a4c965a8666d0165af279ca228dd"
children: [
{
name: "datinginthe.eu (3d Secure)"
id: "8ac9a4cd65a866700165b47a25c74e61"
},
{
name: "datinginthe.eu (Non-3d)"
id: "8ac9a4cd65a866700165b478f0574e48"
},
{
name: "datinginthe.eu - ST (Non-3d)"
id: "8ac9a4ca65a8a0670165d34366d53fc9"
},
{
name: "datinginthe.eu ST (3d Secure)"
id: "8ac9a4cb66aafd790166ad040a170b68"
}
]
}
]
}
]