Lines Matching full:label
80 label: string = 'Child';
97 label: string = 'Parent';
100 Text(`${this.label}`)
105 …o the Parent component decorated by the @Entry. That is, the value of the label variable is Parent.
108 …f the Child component. this points to the Child, that is, the value of the label variable is Child.
111 …// this of the arrow function points to the host object, so the value of the label variable is Par…
139 label: string = '';
143 Text($$.label)
151 label: string = 'Child';
161 this.customOverBuilderParam({label: 'global Builder label' } )
169 label: string = 'Parent';
172 Text(`${this.label}`)
286 @Local label: string = 'Parent Page';
290 Text(`Local Builder:${this.label}`)
298 ChildPage({ message: this.label}){
307 …ChildPage({ message: this.label}){ // Use global @Builder. ChildPage component is followed by bra…
324 label: string = 'Child Page';
349 label: string = 'Parent Page';
353 Text(`Local Builder:${this.label}`)
361 …rentPage** component decorated by the @Entry. Therefore, the value of the label variable is Parent…
364 … ChildPage component. this points to ChildPage, that is, the value of the label variable is Child …
367 …// this of the arrow function points to the host object, so the value of the label variable is Par…
397 @Param label: string = 'Child Page';
422 @Local label: string = 'Parent Page';
426 Text(`Local Builder:${this.label}`)
434 …rentPage** component decorated by the @Entry. Therefore, the value of the label variable is Parent…
437 … ChildPage component. this points to ChildPage, that is, the value of the label variable is Child …
440 …// this of the arrow function points to the host object, so the value of the label variable is Par…
468 …er**. Currently, this points to the custom component. Therefore, if the **label** value is changed…
475 @State label: string = 'Child Page';
489 @State label: string = 'Parent Page';
493 Text(`Builder :${this.label}`)
505 Button('Click to change label')
507 this.label = 'Hello World';
514 …points to the parent component **ParentPage**. Therefore, if the value of label is changed in the …
522 @State label: string = 'Child Page';
536 @State label: string = 'Parent Page';
540 Text(`Builder :${this.label}`)
551 Button('Click to change label')
553 this.label = 'Hello World';