hdwposxy/src/navigation/vertical/index.ts

50 lines
954 B
TypeScript
Executable File

export default [
{
title: 'Home',
to: { name: 'root' },
icon: { icon: 'tabler-smart-home' },
},
{
title: 'Store',
to: { name: 'store-list' },
icon: { icon: 'tabler-building-store' },
},
{
title: 'Flow',
icon: { icon: 'tabler-topology-bus' },
children: [
{
title: 'BL not sent list',
to: { name: 'flux-bl-not-sent' },
icon: { icon: 'tabler-unlink' },
},
],
},
{
title: 'OBI',
icon: { icon: 'tabler-shopping-bag-check' },
children: [
{
title: 'Orders',
to: { name: 'obi-order-list' },
icon: { icon: 'tabler-bug' },
},
],
},
{
title: 'Dotsoft',
icon: { icon: 'tabler-database-star' },
},
{
title: 'XADMIN',
icon: { icon: 'tabler-database-star' },
children: [
{
title: 'Logs',
to: { name: 'xadmin-log' },
icon: { icon: 'tabler-bug' },
},
],
},
]