Skip to content
Advertisement

Svelte store function update

Svelte store documentation shows String or Integer being updated, but I did not find any dynamic function in store.

I don’t understand how to make the getData function as a writable in order to notify the html of the change.

In the following sample, I would like b to be shown after the updateKey function is called.

You will find a minimal code in REPL here: https://svelte.dev/repl/3c86bd48d5b5428daee514765c926e58?version=3.29.7

And the same code here in case REPL would be down:

App.svelte:

JavaScript

store.js

JavaScript

The goal is to work with a dynamic function in the store.

Advertisement

Answer

Well, I think you still have a bit of confusion about how things work in Svelte… Not sure how to best answer your question, so here’s some code for what’s you’re trying to achieve, along with some comments. I hope it will help you better understand how things come together in regards to stores.

App.svelte

JavaScript

store.js

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement