forked from topfullstack/adminify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu.js
More file actions
25 lines (22 loc) · 852 Bytes
/
Copy pathmenu.js
File metadata and controls
25 lines (22 loc) · 852 Bytes
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
export default [
{ 'header': 'Admin' },
{ 'href': '/', 'title': 'Home', 'icon': 'home' },
{ 'href': '/crud/types', 'title': 'Types', 'icon': 'view_list' },
{ 'href': '/crud/posts', 'title': 'Posts', 'icon': 'view_list' },
{ 'href': '/crud/posts/create', 'title': 'Create Post', 'icon': 'note_add' },
{ 'href': '/crud/comments', 'title': 'Comments', 'icon': 'view_list' },
{ 'href': '/crud/users', 'title': 'Users', 'icon': 'people' },
{ 'href': '/chat', 'title': 'Chat', 'icon': 'chat' },
{
'title': 'Pages',
'icon': 'domain',
'items': [
{ 'href': '/example', 'title': 'Example' },
{ 'href': '/about', 'title': 'About' }
]
},
{ divider: true },
{ 'header': 'System' },
{ 'href': '/settings', 'title': 'Settings', 'icon': 'settings' },
{ 'href': '/login', 'icon': 'lock', 'title': 'Logout' }
]