0👍
✅
By the error message you have, it looks like dataProps
is a property of your component and properties can’t be mutated. Try assigning Object.assign({}, newValue);
to a data
variable and not a variable from props
.
Source:stackexchange.com