Checkout Pro Version

Routing

How to add page to sidebar ?

                            
// ----------------------------------------------------
// File: /components/Layout/Full/vertical-sidebar/sidebarItem.ts
// ----------------------------------------------------

const sidebarItem: menu[] = [
  { header: 'Home' },
  {
      title: 'Dashboard',
      icon: LayoutDashboardIcon,
      to: '/',
      external: false
  },
  {
      title: 'Analytical',
      icon: ApertureIcon,
      to: 'https://flexy-nuxtjs-main.netlify.app/dashboards/analytical',
      chip: 'Pro',
      external: true
  },
  {
      title: 'eCommerce',
      icon: ShoppingCartIcon,
      chip: 'Pro',
      to: 'https://flexy-nuxtjs-main.netlify.app/dashboards/ecommerce',
      external: true
  },
]