Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Svelte 3 Up and Running

You're reading from   Svelte 3 Up and Running A fast-paced introductory guide to building high-performance web applications with SvelteJS

Arrow left icon
Product type Paperback
Published in Aug 2020
Publisher Packt
ISBN-13 9781839213625
Length 168 pages
Edition 1st Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
Alessandro Segala Alessandro Segala
Author Profile Icon Alessandro Segala
Alessandro Segala
Arrow right icon
View More author details
Toc

Managing cross-component state

In Chapter 3, Building Reactive Svelte Components, we looked at how to use props, bindings, and events to pass variables between components, including from parents to children and vice versa. However, sometimes it's useful to maintain a state that is shared across multiple components, even those not having direct relationships.

Svelte stores

Svelte stores can be used precisely for this purpose. They provide readable and writable stores that can be accessed by any component in the application, while being fully reactive. That means that if a component depends on a store and the value of such a store changes, Svelte automatically re-executes all reactive statements and templates that depend on it.

In the previous chapter, we created a src/stores.js file with pre-made content. Let's take another look at it here:

src/stores.js

import {writable, derived} from 'svelte/store'
export const profile = writable(null)
export const...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at £16.99/month. Cancel anytime