src/app/core/layout/sidebar/menu.model.ts
Properties |
badge |
badge:
|
Type : any
|
Optional |
expanded |
expanded:
|
Type : boolean
|
Optional |
icon |
icon:
|
Type : string
|
Optional |
id |
id:
|
Type : number
|
Optional |
isTitle |
isTitle:
|
Type : boolean
|
Optional |
items |
items:
|
Type : MenuItem[]
|
Optional |
label |
label:
|
Type : string
|
Optional |
link |
link:
|
Type : string
|
Optional |
parentId |
parentId:
|
Type : number
|
Optional |
routeLink |
routeLink:
|
Type : string
|
Optional |
subItems |
subItems:
|
Type : any
|
Optional |
export interface MenuItem {
id?: number;
label?: string;
icon?: string;
link?: string;
expanded?: boolean;
subItems?: any;
isTitle?: boolean;
badge?: any;
parentId?: number;
routeLink?: string;
items?: MenuItem[];
}