others.js
1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
export default [
{
title: 'Others',
icon: { icon: 'ri-more-line' },
children: [
{
title: 'Access Control',
icon: { icon: 'ri-shield-line' },
to: 'access-control',
action: 'read',
subject: 'AclDemo',
},
{
title: 'Nav Levels',
icon: { icon: 'ri-menu-line' },
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: 'ri-eye-off-line' },
disable: true,
},
{
title: 'Raise Support',
href: 'https://themeselection.com/support/',
icon: { icon: 'ri-lifebuoy-line' },
target: '_blank',
},
{
title: 'Documentation',
href: 'https://demos.themeselection.com/materio-vuetify-vuejs-admin-template/documentation/',
icon: { icon: 'ri-article-line' },
target: '_blank',
},
],
},
]