yaminncco / vue-sidebar-menu

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

added tooltip when item is hovered #272

Closed mukhrr closed 6 months ago

mukhrr commented 7 months ago

Users may need title as a tooltip when sidebar is collapsed as icon sometimes is not enough to completely understand what is item about. So I added html title attribute when sidebar is closed.

yaminncco commented 6 months ago

You can add title or any attribute through the attributes property.

{
  href: '/',
  title: 'Installation',
  icon: 'fa fa-download',
  attributes: {
    title: 'Installation'
  }
}

Thanks