it is possible to remove specific element from lists. i tried this functions for remove element
pop() = remove last element $remove(index) = n
pop() = remove last element
$remove(index) = n
$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.
$remove
splice
Migration From Vue 1.x - 2.0
methods: { removeElement: function (index) { this.items.splice(index, 1); } }