* 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)
| 2450 | * @param {any} value |
| 2451 | */ |
| 2452 | setProperty(obj, property, value) { |
| 2453 | obj[property] = value; |
| 2454 | this.reactivity.notifyProperty(obj); |
| 2455 | } |
| 2456 | /** |
| 2457 | * Notify the reactivity system that an object was mutated in-place. |
| 2458 | * Call this after operations like push, splice, append, etc. |
no test coverage detected