0π
β
It was simpler than I thought it would be. Just changed the edit method to this and now itβs working π
edit(row, column) {
for (let idx in this.editableData) {
delete this.editableData[idx];
}
this.editableData[row + '|' + column] = this.tableData.data.filter((item) => row === item.key)[0][column];
},
Source:stackexchange.com