How to untrack() or on() a props value?
Maybe I'm thinking about this the wrong way? But I'm wondering how to
I suppose I could derive a new
then
Thanks!
untrack() a props value the way you'd untrack() a signal in a createEffect for example. Since the reactive values in props are wrapped in a getter, it seems impossible to get the Accessor that can be used in untrack() or on().I suppose I could derive a new
Accessor with something like:then
untrack(thing) ? But that seems like a roundabout way of doing it, would that even make sense?Thanks!
