mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-26 18:13:11 +00:00
25 lines
677 B
TypeScript
25 lines
677 B
TypeScript
export const navigation = [
|
|
{
|
|
'id' : 'applications',
|
|
'title' : 'Applications',
|
|
'translate': 'NAV.APPLICATIONS',
|
|
'type' : 'group',
|
|
'children': [
|
|
{
|
|
'id' : 'sample',
|
|
'title': 'Sample',
|
|
'translate': 'NAV.SAMPLE.TITLE',
|
|
'type' : 'item',
|
|
'icon' : 'email',
|
|
'url' : '/sample',
|
|
'badge': {
|
|
'title': 25,
|
|
'translate': 'NAV.SAMPLE.BADGE',
|
|
'bg' : '#F44336',
|
|
'fg' : '#FFFFFF'
|
|
}
|
|
}
|
|
]
|
|
}
|
|
];
|