vm.items[indexOfItem] = newValue
vue不能检测数组的变动
想要实现可以使用vue的set方法
this.$set(this.items,indexOfItem,newValue);