yaminncco / vue-sidebar-menu

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

Can I use Hericon ? #232

Closed stoneC0der closed 2 years ago

stoneC0der commented 2 years ago

I tried to use hericon but can figure out how to implement that can you point me to the right direction if that's doable and simple or my just sweet to compatible icon libraries

Thanks!

yaminncco commented 2 years ago

Icon property with a custom component:

import myIcon from './myIcon.vue'

// menu
{
  icon: {
    element: myIcon
  }
}
stoneC0der commented 2 years ago

Thanks a lot.