yaminncco / vue-sidebar-menu

A Vue.js Sidebar Menu Component
MIT License
646 stars 194 forks source link

Menu groups #256

Closed prattcmp closed 9 months ago

prattcmp commented 1 year ago

It would be great if we could put spacing between menu items based on groupings.

See example:

Screenshot 2023-05-02 at 1 17 03 PM
yaminncco commented 1 year ago

Possible with a component item

import { h } from 'vue'

// menu
{
  ...
  {
    component: h('div', { style: { height: '50px' }})
  }
  ...
}