yaminncco / vue-sidebar-menu

A Vue.js Sidebar Menu Component

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Menu groups

prattcmp opened this issue · comments

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

Possible with a component item

import { h } from 'vue'

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