bestguy / sveltestrap

Bootstrap 4 & 5 components for Svelte
https://sveltestrap.js.org
MIT License
1.3k stars 180 forks source link

Improve sveltestrap Navbar example, add links to DropdownItem #540

Open bluepuma77 opened 1 year ago

bluepuma77 commented 1 year ago

The current example has a dropdown with DropdownItem, which is nice to see, but you can't do anything with it. It would make more sense to have links in there, like in the top navigation.

NavItem uses a link:

      <NavItem>
        <NavLink href="#components/">Components</NavLink>
      </NavItem>

DropdownItem has no links:

          <DropdownItem>Option 1</DropdownItem>

How to use links in DropdownItem?