yaminncco / vue-sidebar-menu

A Vue.js Sidebar Menu Component
MIT License
654 stars 193 forks source link

Active Menu CSS #278

Closed Seol827 closed 4 months ago

Seol827 commented 4 months ago

Hello there! When I click a sub-item on the sidebar menu, I want to style the font of that item. (there's no href). How can I change that? ex) click the 'title1' => 'title1' text should be bold.

const menu = [
  // {
  //   header: 'Header',
  //   hiddenOnCollapse: true,
  // },
  {
    title: 'Dash Board',
    icon: 'ri-keyboard-box-line',
    href: '/',
    child: [
      {
        title: 'title1',
      },
      {
        title: 'title2',
      }
  }
]
yaminncco commented 4 months ago

You may consider using a custom link component then add the styles from there on click.