* Set a property on an object and notify the reactivity system. * @param {Object} obj - DOM element or plain JS object * @param {string} property * @param {any} value
(obj, property, value)
| 2459 | * @param {any} value |
| 2460 | */ |
| 2461 | setProperty(obj, property, value) { |
| 2462 | obj[property] = value; |
| 2463 | this.reactivity.notifyProperty(obj); |
| 2464 | } |
| 2465 | /** |
| 2466 | * Notify the reactivity system that an object was mutated in-place. |
| 2467 | * Call this after operations like push, splice, append, etc. |
no test coverage detected