Lines Matching refs:variable

28variable. Whether the attribute with the given key exists in AppStorage depends on the application…
30 … a variable with \@StorageProp(key), a one-way data synchronization is established from the attrib…
40 | Allowed variable types | Object, class, string, number, Boolean, enum, and array of these typ…
41 …One-way: from the attribute in AppStorage to the component variable.<br>The component variable can…
42 | Initial value for the decorated variable | Mandatory. If the attribute does not exist in AppS…
50 … The \@StorageProp decorated variable can be used to initialize an \@State, \@Link, \@Prop, or \@P…
65 - When the decorated variable is of the Boolean, string, or number type, its value change can be ob…
67 - When the decorated variable is of the class or object type, its value change as well as value cha…
69 - When the decorated variable is of the array type, the addition, deletion, and updates of array it…
71 - When the decorated variable is of the Date type, the value change of the **Date** object can be o…
73 - When the decorated variable is **Map**, value changes of **Map** can be observed. In addition, yo…
75 - When the decorated variable is **Set**, value changes of **Set** can be observed. In addition, yo…
81 - When the value change of the \@StorageProp(key) decorated variable is observed, the change is not…
83 - The value change of the \@StorageProp(key) decorated variable only applies to the private member …
85 - When the data decorated by \@StorageProp(key) is a state variable, the change of the data is not …
96 \@StorageLink(key) creates a two-way data synchronization between the variable it decorates and the…
107 | Allowed variable types | Object, class, string, number, Boolean, enum, and array of these…
108 … | Two-way: from the attribute in AppStorage to the custom component variable and vice versa|
109 | Initial value for the decorated variable | Mandatory. If the attribute does not exist in …
117 …ageLink decorated variable can be used to initialize a regular variable or an \@State, \@Link, \@P…
132 - When the decorated variable is of the Boolean, string, or number type, its value change can be ob…
134 - When the decorated variable is of the class or object type, its value change as well as value cha…
136 - When the decorated variable is of the array type, the addition, deletion, and updates of array it…
138 - When the decorated variable is of the Date type, the value change of the **Date** object can be o…
140 - When the decorated variable is **Map**, value changes of **Map** can be observed. In addition, yo…
142 - When the decorated variable is **Set**, value changes of **Set** can be observed. In addition, yo…
148 1. When the value change of the \@StorageLink(key) decorated variable is observed, the change is sy…
152 3. When the data decorated by \@StorageLink(key) is a state variable, its change is synchronized to…
177 …ppStorage. Therefore, you are advised not to use the preset environment variable names in AppStora…
273 …the change. After @Watch observes the change to **tapIndex**, the state variable **tapColor** is u…
537 In the following example, the type of variable **A** is **number | null**, and the type of variable
602 In this example, the **selectedDate** variable decorated by @StorageLink is of the Date type. After…
649 In this example, the **message** variable decorated by @StorageLink is of the Map\<number, string\>…
695 In this example, the **memberSet** variable decorated by @StorageLink is of the Set\<number\> type.…