Adding Menu In Different Layouts
Vuely provides you the ability to add new elements in the menu section of each layout. You can read the detailed documentation about adding the elements below.
Adding a new menu element
export const menus = {
'message.general': [
{
action: 'zmdi-view-dashboard', //icon
title: 'message.dashboard', // menu title
active: true, // set active menu
items: [
{ title: 'message.ecommerce', path: '/default/dashboard/ecommerce', exact: true },
{ title: 'message.webAnalytics', path: '/mini/dashboard/web-analytics', exact: true },
{ title: 'message.magazine', path: '/horizontal/dashboard/magazine', exact: true },
{ title: 'message.news', path: '/boxed-v2/dashboard/news', exact: true },
{ title: 'message.agency', path: '/boxed/dashboard/agency', exact: true },
{ title: 'message.saas', path: '/horizontal/dashboard/saas', exact: true }
] // childrens
},
{
action: 'zmdi-widgets',
title: 'message.widgets',
active: false,
items: [
{ title: 'message.user', path: '/widgets/user-widgets' },
{ title: 'message.charts', path: '/widgets/chart-widgets' }
]
}
], // categories
'message.modules': [
{
action: 'zmdi-email',
title: 'message.inbox',
active: false,
items: null,
path: '/inbox'
},
{
action: 'zmdi-comments',
title: 'message.chat',
active: false,
items: null,
path: '/chat'
}
]
}Change/Edit icons of the menu items
Change/Edit icons of the parent menu items in Horizontal Layout
Adding route of the added element in different layouts
Default Layout

Mini Sidebar

Horizontal Menu

Boxed
Boxed Agency Version

Boxed News Version

Last updated