Lines Matching refs:value
13 * and fires callback when the expression value changes.
51 this.value = this.lazy
64 const value = this.getter.call(this.vm, this.vm);
68 traverse(value);
72 return value;
128 const value = this.get();
130 value !== this.value ||
131 ((isObject(value) || this.deep) && !this.shallow)
133 // Set new value.
134 const oldValue = this.value;
135 this.value = value;
136 this.cb.call(this.vm, value, oldValue);
143 * Evaluate the value of the watcher. This only gets called for lazy watchers.
146 this.value = this.get();
178 this.vm = this.cb = this.value = null;