1.0.8 • Published 6 years ago

svelte-router-simple v1.0.8

Weekly downloads
-
License
ISC
Repository
-
Last release
6 years ago

svelte-router-simple

Installation

yarn add svelte-router-simple

Usage

  import Router from "svelte-router-simple";

  const routes = [
    {
      exact: "/", // Specify an exact path match
      component: HomeComponent
    },
    {
      prefix: "/", // Specify a prefix path match, and attempt to match child routes
      component: NotFound, // Used if no child routes match
      routes: [
        { exact: "/videos", component: VideosComponents },
        { exact: "/pictures", component: PicturesComponent },
      ],
    },
  ];
</script>

<div id="app">
  <Router {routes} />
</div>
1.0.8

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago

0.0.0

6 years ago