84 lines
1.8 KiB
TypeScript
84 lines
1.8 KiB
TypeScript
export const menus = [
|
|
{
|
|
'name': 'Home',
|
|
'icon': 'home',
|
|
'link': '/home',
|
|
'open': true,
|
|
},
|
|
{
|
|
'name': 'Infra',
|
|
'icon': 'widgets',
|
|
'link': false,
|
|
'open': false,
|
|
'sub': [
|
|
{
|
|
'name': 'Map',
|
|
'link': '/map',
|
|
'icon': 'indeterminate_check_box',
|
|
'chip': false,
|
|
'open': false,
|
|
},
|
|
{
|
|
'name': 'Sensors',
|
|
'link': '',
|
|
'icon': 'indeterminate_check_box',
|
|
'chip': false,
|
|
'open': false,
|
|
},
|
|
{
|
|
'name': 'Probes',
|
|
'link': '/probes',
|
|
'icon': 'indeterminate_check_box',
|
|
'chip': false,
|
|
'open': false,
|
|
},
|
|
]
|
|
},
|
|
{
|
|
'name': 'Monitor',
|
|
'icon': 'widgets',
|
|
'link': false,
|
|
'open': false,
|
|
'sub': [
|
|
{
|
|
'name': 'Overview',
|
|
'link': '',
|
|
'icon': 'indeterminate_check_box',
|
|
'chip': false,
|
|
'open': false,
|
|
},
|
|
{
|
|
'name': 'Dashboards',
|
|
'link': '',
|
|
'icon': 'indeterminate_check_box',
|
|
'chip': { 'value': 3, 'color': 'accent'},
|
|
'open': false,
|
|
},
|
|
]
|
|
},
|
|
{
|
|
'name': 'Alert',
|
|
'icon': 'warning',
|
|
'link': '',
|
|
'open': true,
|
|
},
|
|
{
|
|
'name': 'Report',
|
|
'icon': '',
|
|
'link': '',
|
|
'open': true,
|
|
},
|
|
{
|
|
'name': 'Log',
|
|
'icon': '',
|
|
'link': '',
|
|
'open': true,
|
|
},
|
|
{
|
|
'name': 'Setting',
|
|
'icon': '',
|
|
'link': '',
|
|
'open': true,
|
|
},
|
|
];
|