mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-01-10 20:45:08 +00:00
26 lines
548 B
TypeScript
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'
|
|
}
|
|
}
|
|
];
|
|
}
|
|
}
|