rob-balfre / svelte-select

Svelte Select. A select component for Svelte
https://svelte-select-examples.vercel.app
Other
1.27k stars 180 forks source link

Sync component items with stores values #524

Closed gschurck closed 1 year ago

gschurck commented 1 year ago

How to update the svelte-select items list with a store ? Like I have an itemsStore, and if I add an item in the store list on a form on the same page, I want the select list to be instantly updated from the store.

rob-balfre commented 1 year ago

Same way you would with any svelte component...

https://svelte.dev/repl/86220649f2e64e9b870e03b34db9e29e?version=3.55.1

gschurck commented 1 year ago

Thanks for the example.