You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should throw a warning - or just outright reject - component properties marked as mutable. In Dioxus 0.4 and below, props were naturally immutable thanks to the immutable reference.
Allowing props to be mutable means users are free to implement data binding in their UI which we want to discourage. Our docs advise that you use callbacks instead of mutable signal binding on prop boundaries, and the framework should also give you a warning.