-
I want a writable store which has one dependency to another store. |
Beta Was this translation helpful? Give feedback.
Answered by
205g0
Feb 14, 2023
Replies: 1 comment
-
Ok, I found a way: A custom store with an input ( |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
205g0
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ok, I found a way: A custom store with an input (
writable
) store and an output (derived
) store..set
/.update
methods of the custom store refer to the first store while.subscribe
to the second.