yaminncco / vue-sidebar-menu

A Vue.js Sidebar Menu Component

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Active Menu CSS

Seol827 opened this issue · comments

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',
      }
  }
]

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