通过数据的下标删除对应数据,表格点击删除的时候插槽scope中获取不到$index:
删除 method: remove(index){ console.log(index) this.tableData.splice(index,1) }
插槽传参改用scope.$rowIndex:
删除