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: "adhesive-plaster-outline",
      to: "/",
    },
    {
      title: "eCommerce",
      icon: "widget-add-line-duotone",
      to: "https://materialm-nuxt-main.netlify.app/dashboards/ecommerce",
      chip: "Pro",
      external: true,
    },
    {
      title: "Analytics",
      icon: "chart-line-duotone",
      to: "https://materialm-nuxt-main.netlify.app/dashboards/analytics",
      chip: "Pro",
      external: true,
    },
    {
      title: "CRM",
      icon: "layers-line-duotone",
      to: "https://materialm-nuxt-main.netlify.app/dashboards/crm",
      chip: "Pro",
      external: true,
    },
]