Implementing Routing in Svelte
Learn how to implement an SPA routing in Svelte using the svelte-routing library.
We'll cover the following
So far, we've only worked on one page, but most web applications have multiple pages. In this lesson, we're going to take a look at how to implement routing in Svelte to create more pages and navigate between them.
By default, Svelte doesn't have a built-in way to handle routing, so we're going to use a third-party community-developed package called svelte-routing
. We're going to define all routes at the root of our application, App.svelte
:
Get hands-on with 1400+ tech skills courses.