Skip to content

HannesGitH/svelte-navbar

Repository files navigation

svelte navbar

well, as the name suggest this package provides a svelte-component that would be used as a navbar.

Installation

npm i svelte-navbar

Usage

<script lang="ts">
    import Navbar, {NavbarItem} from 'svelte-navbar';
</script>

<Navbar>
    <NavbarItem on:click={(e) => scrollTop()}>Home</NavbarItem>
    <NavbarItem on:click={(e) => routeToPage('shop', false)}>Shop</NavbarItem>
</Navbar>

API

this is still WIP

Example

an example can be found here with implementation here