-
Is it possible to derive read/write signals (so not memos) of fields or elements of a signal? For example, in the todo example the
My use-case is similar to this except that I'd rather have this component take only a single Is this possible? I figure I could hack it together by using a separate signal and using with I looked through the documentation but wasn't able to find anything. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You can create a read only view of a signal with |
Beta Was this translation helpful? Give feedback.
You can create a read only view of a signal with
Readable::map
, but you cannot create a writable view. See #3610 for more information