[Vuejs]-Vuejs refresh template after ajax return

0👍

Totally misunderstod the issue first.

The problem is updating updating an index in an array. This is something that has to be done with Array.$set(index, value) since Vue don’t have a way to tell if an index in an array is changed.

You can read more about it here

Leave a comment