1 property in `createMutable` with only 1 signal
I have a
createMutable
. Most of the properties in this object I want to be behaving like a regular createMutable
: all the properties are being represented by individual signals.
1 property on the other hand changes fast and will always be set as a whole, so as a performance optimization I would want this object to only occupy 1 signal, since this object can become rather large.
Is there a utility that can help with accomplishing this?4 Replies
you could make a
Unwrapped
class, or maybe even turn that property into a classaa nice, so classes do not get proxified?
Nope
They won't be reactive
that's great knowledge, thanks!