Component, that realizes navigation between app pages.

    Sidebar is composed of 2 components:

    1. <app-sidebar :isOpen="opened" @toggle-menu="toggleSidebar"/>

    Props

    • isOpen - Boolean - defines default open|closed state of sidebar. prop is bound bidirectionaly (component will emit changes by clicking selector icon).
      Events

    • toggle-menu - changes state of sidebar.

    1. <vuestic-sidebar :hidden="isOpen">
    2. <template slot="menu"> ... </template>
    3. </vuestic-sidebar>

    Props

    • hidden - Boolean - defines if sidebar is opened or no.
      Slots

    • menu - set of sidebar links.
      There are two types of components, that can be inserted in 'menu' slot:

    • sidebar-link - wrapper on router link, with 'title' slot for title and icon.

    • sidebar-link-group - wrapper with 'title' slot for title and icon and default slot for sidebar links. Used in cases, when sidebar links can be grouped in category.
      If you want to add icon into submenu, just choose necessary sidebar-link and insert suitable icon into its 'title' slot. For example:
    1. <sidebar-link :to="{ name: 'dashboard' }">
    2. <span slot="title">
    3. <span class="sidebar-menu-item-icon vuestic-icon vuestic-icon-dashboard"></span>
    4. <span>{{ $t('menu.dashboard') }}</span>
    5. </span>
    6. </sidebar-link>