52 lines
1.0 KiB
JavaScript
52 lines
1.0 KiB
JavaScript
|
|
export default [
|
||
|
|
{ heading: 'Others' },
|
||
|
|
{
|
||
|
|
title: 'Access Control',
|
||
|
|
icon: { icon: 'tabler-command' },
|
||
|
|
to: 'access-control',
|
||
|
|
action: 'read',
|
||
|
|
subject: 'AclDemo',
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: 'Nav Levels',
|
||
|
|
icon: { icon: 'tabler-menu-2' },
|
||
|
|
children: [
|
||
|
|
{
|
||
|
|
title: 'Level 2.1',
|
||
|
|
to: null,
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: 'Level 2.2',
|
||
|
|
children: [
|
||
|
|
{
|
||
|
|
title: 'Level 3.1',
|
||
|
|
to: null,
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: 'Level 3.2',
|
||
|
|
to: null,
|
||
|
|
},
|
||
|
|
],
|
||
|
|
},
|
||
|
|
],
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: 'Disabled Menu',
|
||
|
|
to: null,
|
||
|
|
icon: { icon: 'tabler-eye-off' },
|
||
|
|
disable: true,
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: 'Raise Support',
|
||
|
|
href: 'https://pixinvent.ticksy.com/',
|
||
|
|
icon: { icon: 'tabler-headphones' },
|
||
|
|
target: '_blank',
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: 'Documentation',
|
||
|
|
href: 'https://demos.pixinvent.com/vuexy-vuejs-admin-template/documentation/guide/laravel-integration/folder-structure.html',
|
||
|
|
icon: { icon: 'tabler-file-text' },
|
||
|
|
target: '_blank',
|
||
|
|
},
|
||
|
|
]
|