refine inline edit table example
This commit is contained in:
parent
3c05519a09
commit
b98860ace1
1 changed files with 3 additions and 2 deletions
|
@ -83,8 +83,9 @@ export default {
|
|||
getList() {
|
||||
this.listLoading = true
|
||||
fetchList(this.listQuery).then(response => {
|
||||
this.list = response.data.items.map(v => {
|
||||
v.edit = false
|
||||
const items = response.data.items
|
||||
this.list = items.map(v => {
|
||||
this.$set(v, 'edit', false)
|
||||
return v
|
||||
})
|
||||
this.listLoading = false
|
||||
|
|
Loading…
Reference in a new issue