我有这个<span @click="remove(product)" class="btn btn-sm btn-danger"><i class="fa fa-times"></i></span> element, It triggers this function:<br/>remove(product) { this.form.products.$remove(product);} <br/>但它输出这个错误:TypeError: this.form.products.$remove is not a function我不知道出了什么问题。
1 回答
汪汪一只猫
TA贡献1898条经验 获得超8个赞
使用该splice
方法从数组中删除项目
首先获取item的索引
let index = this.form.products.indexOf(product);
然后使用删除它splice
this.form.products.splice(index,1);
添加回答
举报
0/150
提交
取消