We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c05519 commit b98860aCopy full SHA for b98860a
src/views/example/table/inlineEditTable.vue
@@ -83,8 +83,9 @@ export default {
83
getList() {
84
this.listLoading = true
85
fetchList(this.listQuery).then(response => {
86
- this.list = response.data.items.map(v => {
87
- v.edit = false
+ const items = response.data.items
+ this.list = items.map(v => {
88
+ this.$set(v, 'edit', false)
89
return v
90
})
91
this.listLoading = false
0 commit comments