Skip to content

Instantly share code, notes, and snippets.

@michaltakac
Created November 20, 2015 21:14
Show Gist options
  • Save michaltakac/0f4b5e781f1229b9d554 to your computer and use it in GitHub Desktop.
Save michaltakac/0f4b5e781f1229b9d554 to your computer and use it in GitHub Desktop.
Profile menu object
export default {
name: 'Profile menu',
menuItems: [
{
title: 'Profile',
link: '#',
children: [],
icon: 'fa fa-user fa-fw',
},
{
title: 'Messages',
link: '#',
children: [],
icon: 'fa fa-envelope-o fa-fw',
notificationCount: 4,
},
{
title: 'Comments',
link: '#',
children: [],
icon: 'fa fa-comment-o fa-fw',
notificationCount: 19,
},
{
title: 'Storage',
link: '#',
children: [],
icon: 'fa fa-database fa-fw',
},
{
title: 'Calendar',
link: '#',
children: [],
icon: 'fa fa-calendar fa-fw',
}
]
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment