vue 刪除數組元素

js刪除 let a = ['222','333']; let index = a.indexOf('333'); if(index!=-1) a.splice(index,1); 複製代碼 結果:["222"]vue vue刪除 this.a = ['222','333']; this.a.$remove('222'); 複製代碼 結果:["333"]bash 轉載於:
相關文章
相關標籤/搜索