I have a Vue.js app where I have a v-repeat on an array of items. I want to add a newItem to the list of items. When I try this.items.push(this.newItem) the obj
this.items.push(this.newItem)
This didn't work for me (vue 1.0.13). I used the following to create a copy without the data bindings:
this.items.push( JSON.parse( JSON.stringify( newItem ) ) );