其实此处打的问题是内容已经被修改了,但是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表格对应的那一行,触发热更新。应该是这么个原理。
}