Lines Matching refs:fullName
43 get fullName() { // 正确用法
55 get fullName() {
123 - 点击第一个Button改变lastName,触发\@Computed fullName重新计算。
124 - `this.fullName`被绑定在两个Text组件上,观察`fullName`日志,可以发现,计算只发生了一次。
127 - 点击第二个Button,age自增,UI无变化。因为age非状态变量,只有被观察到的变化才会触发\@Computed fullName重新计算。
138 get fullName() {
148 Text(this.fullName)
149 Text(this.fullName)
167 - 点击Button改变lastName,触发\@Computed fullName重新计算,且只被计算一次。
176 get fullName() {
191 Text(this.name1.fullName)
192 Text(this.name1.fullName)