hdwposxy/src/navigation/horizontal/index.ts

32 lines
595 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',
to: { name: 'flux-bl-not-sent' },
icon: { icon: 'tabler-unlink' },
},
],
},
{
title: 'OBI',
icon: { icon: 'tabler-shopping-bag-check' },
},
{
title: 'Dotsoft',
icon: { icon: 'tabler-database-star' },
},
]