$remove
is deprecated in Vue.js 2.0 and replaced by splice
as stated in the docs. Make sure you add the 2nd parameter of splice
for it to work.
Migration From Vue 1.x – 2.0
methods: {
removeElement: function (index) {
this.items.splice(index, 1);
}
}