57 lines
1.1 KiB
TypeScript
Executable File
57 lines
1.1 KiB
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 list',
|
|
to: { name: 'obi-order-list' },
|
|
icon: { icon: 'tabler-bug' },
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: 'Dotsoft',
|
|
icon: { icon: 'tabler-database-star' },
|
|
children: [
|
|
{
|
|
title: 'Chat RCT',
|
|
to: { name: 'chat-rct' },
|
|
icon: { icon: 'tabler-message-chatbot' },
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: 'XADMIN',
|
|
icon: { icon: 'tabler-database-star' },
|
|
children: [
|
|
{
|
|
title: 'Logs',
|
|
to: { name: 'xadmin-log' },
|
|
icon: { icon: 'tabler-bug' },
|
|
},
|
|
],
|
|
},
|
|
]
|