欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

使用element UI时,table表格插入input输入框后里面的内容无法编辑问题

程序员文章站 2022-05-14 22:20:59
...

其实此处打的问题是内容已经被修改了,但是table表格因为没有更新数据,所以看起来像是没有修改成功

此处可以添加给对应的input标签添加@input=“onExchange(scope.$index)”

<template slot-scope="scope>
    <el-input
        v-model="scope.row[item.prop]"
        @input="onExchange(scope.$index)"
        type="text"
    />
</template>

onExchange方法的内容为

onExchange (index) {
   let moment = this.tableData[index]  // 此处的tableData为自己的table表格绑定的data数组
   this.$set(this.tableData, index, moment)  
   // 此处是将修改的那一行的数据重新赋值给table表格对应的那一行,触发热更新。应该是这么个原理。

}