How to properly watch for nested data
How to properly watch for nested data
Use a deep watcher for this:
watch: { item: { handler(val){ // do stuff }, deep: true } }
It will spot any changes to the objects in the item array and count to the array itself