[Vuejs]-VUEX Filtered computed property does not update at state change

1👍

The problem was that I did not follow the vue specification about modification of an array. I used vm.items[indexOfItem] = newValue which is not reactive.

Leave a comment