我在 Angular 6 中使用 nebular,在单击菜单项时遇到问题,未添加父菜单项上的活动类。但是,如果您看到http://akveo.com/ngx-admin,当您单击“UI-features”中的““buttons”时,它们的 UI-features 会突出显示。
下面是我的 JSON 文件:
[
{
"title": "Dashboards",
"icon": "font_icons8 icons8-statistics",
"link": "/dashboard",
"home": true
},
{
"title": "UI Features",
"icon": "font_icons8 icons8-data-configuration",
"link": "/ui-features",
"children": [
{
"title": "Typography",
"link": "/ui-features/typography"
},
{
"title": "Grid",
"link": "/ui-features/grid"
}
]
},
]
请帮我摆脱这个问题。