Lines Matching refs:variable
3 You can use \@Local, a variable decorator in state management V2, to observe the variable changes i…
16 - When a variable decorated by \@Local changes, the component that uses the variable is re-rendered.
20 …variable it decorates. If the decorated variable is of the simple type, it can observe value chang…
60 … **componentInfo** that the component wants to use as an internal state variable. However, the **C…
67 | Allowed variable types| Basic types, such as object, class, string, number, boolean, and enum, an…
68 | Initial value for the decorated variable| Local initialization is required. External initializati…
79 …ted by \@Local are observable. When a decorated variable changes, the UI component bound to the va…
81 - When the decorated variable is of boolean, string, or number type, value changes to the variable …
97 // When @Local decorates a simple type, it can observe value changes to the variable.
107 - When the decorated variable is of a class object type, only the overall value changes to the clas…
150 - When the decorated variable is of a simple array type, changes of the entire array or its items c…
183 - When the decorated variable is of a nested type or an object array, changes of lower-level object…
228 // Because the originInfo variable is decorated by @Local, it can be observed.
242 - When the decorated variable is of a built-in type, you can observe the overall value changes of t…
272 - The variable decorated by \@Local indicates the internal state of the component and cannot be ini…
297 …perties can be observed, but lower-level member properties cannot.| The variable itself can be obs…
508 …variable of the same type, triggering re-rendering. This is because in state management V2, a prox…