How can I trigger an update when altering part of an object found by index in an array?
The docs show how to alter the value of an array:
Vue.set(example1.items, indexOfItem, newValue)
or
example1.items.splice(indexOfItem, 1, newValue)
But how to alter the value of a property on an object in an array without changing the rest of the object?
The following works to update the property, but Vue doesn't react to the change until something else triggers an update.
example1.items[indexOfItem].some_object_property = false