Lines Matching refs:prop1
10 prop1: number = 0;
36 Text("Prop1: " + this.a.prop1)
40 Button("Change prop1")
44 this.a.prop1 = this.a.prop1 + 1 ;
55 …prop1** changes at the click of the button, although the components in **CompA** do not use **prop…
238 prop1: number = 0;
253 Text(this.a.prop2) // When this.a.prop1 changes, it will invoke <Text> re-rendering.
268 Text("Prop1: " + this.a.prop1)
272 Button("Change prop1")
281 this.a.prop1 = this.a.prop1 + 1 ;
299 …prop1** is clicked, the page is re-rendered, with the latest values of **prop1** and **subProp1** …
314 prop1: number = 0;
335 Text(this.a.prop2) // When this.a.prop1 changes, it will invoke <Text> re-rendering.
351 Text("Prop1: " + this.a.prop1)
358 Button("Change prop1")
367 this.a.prop1 = this.a.prop1 + 1 ;