filter的简洁写法
new Vue({ el:"#app", data(){ return{ arr:[1,2,3,4] } }, methods:{ compute(){ this.arr = this.arr.filter(_=>_!==3) } } })
有兴趣留言交流
new Vue({ el:"#app", data(){ return{ arr:[1,2,3,4] } }, methods:{ compute(){ this.arr = this.arr.filter(_=>_!==3) } } })