export default {
items: [
{
id: 'navigation',
title: 'Navigation',
type: 'group',
icon: 'icon-navigation',
children: [
{
id: 'dashboard',
title: 'Dashboard',
type: 'collapse',
icon: 'feather icon-home',
children: [
{
id: 'server',
title: 'Server',
type: 'item',
url: '/dashboard/server'
},
{
id: 'shop',
title: 'Shop',
type: 'item',
url: '/dashboard/shop',
badge: {
title: 'NEW',
type: 'badge-danger'
}
}
]
},
]
},
...
...
...
{
id: 'support',
title: 'Support',
type: 'group',
icon: 'icon-support',
children: [
{
id: 'menu-level',
title: 'Menu Levels',
type: 'collapse',
icon: 'feather icon-menu',
children: [
{
id: 'menu-level-1.1',
title: 'Menu Level 1.1',
type: 'item',
url: '#!',
},
{
id: 'menu-level-1.2',
title: 'Menu Level 2.2',
type: 'collapse',
children: [
{
id: 'menu-level-2.1',
title: 'Menu Level 2.1',
type: 'item',
url: '#',
},
{
id: 'menu-level-2.2',
title: 'Menu Level 2.2',
type: 'collapse',
children: [
{
id: 'menu-level-3.1',
title: 'Menu Level 3.1',
type: 'item',
url: '#',
},
{
id: 'menu-level-3.2',
title: 'Menu Level 3.2',
type: 'item',
url: '#',
}
]
}
]
}
]
},
{
id: 'disabled-menu',
title: 'Disabled Menu',
type: 'item',
url: '#',
classes: 'nav-item disabled',
icon: 'feather icon-power'
},
{
id: 'sample-page',
title: 'Sample Page',
type: 'item',
url: '/sample-page',
classes: 'nav-item',
icon: 'feather icon-sidebar'
}
]
}
]
}