jairovg / vuesax-admin-dashboard

2 stars 2 forks source link

Breadcrumbs component #10

Open jairovg opened 3 years ago

jairovg commented 3 years ago

What problem does this feature solve?

The pages should be able to have, if required, a breadcrumb that reveals to the user their current location in the site.

Describe the solution you'd like

What does the proposed API look like?

<!--
let items = [
  {
    label: 'Home',
    href: '/',
  },
  {
    label: 'All items'
    href: '/seach',
  },
  {
    label: 'Current category',
  },
];
-->
<breadcrumbs
  items="items"
  onClick="clickHandler"
/>

Additional context

The visual requirements may be found in the UpLabs page.