UI developer tutorials and guides

Showing posts with label SPA. Show all posts
Showing posts with label SPA. Show all posts

Saturday, August 27, 2022

Svelte Kit routing file change

I am surprised to see new routing file system in Svelte Kit, it replaces the routing files such as index.svelte . When you create a Svelte-Kit project, may notice the +page.svelte file, which is the new version of index.svelte.


 

Routes in Svelte-Kit 

So fart we have learned the default route , how about new route, such as about page.  

  • In the src/route folder create about folder
  • Let's create about route component.
  • Every route component should have +page.svelte

In case of fetching data, a  +page.js /+page.ts  will carry the load function. 

Read More