fuse-angular/src/app/navigation.model.ts
2017-08-22 15:55:48 +03:00

26 lines
548 B
TypeScript

export class FuseNavigation
{
public items: any[];
constructor()
{
this.items = [
{
'title': 'APPS',
'type' : 'subheader'
},
{
'title': 'Sample',
'type' : 'nav-item',
'icon' : 'email',
'url' : '/sample',
'badge': {
'title': 25,
'bg' : '#F44336',
'fg' : '#FFFFFF'
}
}
];
}
}