A simple router for your Single Page Application.
<link>
components needed, just use standard <a>
.npm install --save svelte-router
Routes should be specified as on object where each key is a route, and each value is an array containing a component as the first element and optionally an object with data for that component as the second element.
<!-- Links. These can be here or anywhere else in your app. -->
<a href="#/home">Home</a>
<a href="#/contact">Contact</a>
<a href="#/notfound">Does not exist</a>
<!-- The Router component. Content between Router start and end tag will be
shown in case of navigation to a non-existing route.-->
<Router routes={routes}>
<div class="error">
Houston, we have a problem! This page was not found.
</div>
</Router>
<script>
import Router from 'svelte-app-router'
import Home from './pages/Home.html'
import Contact from './pages/Contact.html'
export let routes: {
'/': [Home, {message: 'from "/" path'}],
'/home' [Home, {message: 'from "/home" path'}]
'/contact': [Contact]
}
</script>