I am trying to build a UI where the side menu of the page has to be generated dynamically please find the following json sample
{
"side-menu 1": {
"id": "",
"display-name": "",
"route-id": "",
"description": "<reference to md file with contents, images, etc>",
"sub-menu": [
{
"id": "",
"display-name": "",
"route-id": "",
"description": "<reference to md file with contents, images, etc>",
"sub-menu": [
{
"id": "",
"display-name": "",
"route-id": "",
"description": "<reference to md file with contents, images, etc>"
},
{
"id": "",
"display-name": "",
"route-id": "",
"description": "<reference to md file with contents, images, etc>"
}
]
},
{
"id": "",
"display-name": "",
"route-id": "",
"description": "<reference to md file with contents, images, etc>"
}
]
}
}
i have tried with "ng-material-multilevel-menu" and 2 days but it has some dependency issue please let me know which plugin or the approach i can use to achieve this
Please point some reference example sample in angular 6 to do get this done