[Vuejs]-Repeat the same behaviour on Ant Design Editable Table for React on Ant Design Vue 3?

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];
    },

Leave a comment