new Vue({ el:"#app", data(){ return{ arr:[1,2,3,4] } }, methods:{ compute(){ this.arr = this.arr.filter(_=>_!==3) } } })
2024-02-10 21:27:22
new Vue({ el:"#app", data(){ return{ arr:[1,2,3,4] } }, methods:{ compute(){ this.arr = this.arr.filter(_=>_!==3) } } })