[Vuejs]-Push object to array of arrays vue re-rendering failing

0👍

You are updating the results of a computed property. The result is not reactive, that’s why you see that your code is updating the groups array, but you don’t see any changed in the DOM.

You need to move the logic from calcExclusion inside the computed method for groups.

Leave a comment