помогите сделать дерево (как на рисунке-можно без изображений папок) из этого массива:
const data = [
{
'folder': true,
'title': 'Pictures',
'children': [
{
'title': 'logo.png'
},
{
'folder': true,
'title': 'Vacations',
'children': [
{
'title': 'spain.jpeg'
}
]
}
]
},
{
'folder': true,
'title': 'Desktop',
'children': [
{
'folder': true,
'title': 'screenshots',
'children': null
}
]
},
{
'folder': true,
'title': 'Downloads',
'children': [
{
'folder': true,
'title': 'JS',
'children': null
},
{
'title': 'nvm-setup.exe'
},
{
'title': 'node.exe'
}
]
},
{
'title': 'credentials.txt'
}
];
пробовал делать
по этому примеру: https://plnkr.co/edit/zuCWg1ONoC4QB8D4?p=preview, но поскольку объекты data разные не получается, возможно причина в пустых названиях ключей...вроде пример и норм, но не получается.