出现场景
1.v-for内绑定复杂类型数据内部值,通过input更改其值时。 2.element表单或表格等组件内部,el-input绑定复杂类型数据内部值,通过input更改其值时。
解决思路
1.el-input加入
@input="change($event)"
...
import { getCurrentInstance } from "vue";
const { proxy, ctx:that } = getCurrentInstance()
const change = (e) => { that.$forceUpdate(); }
2.如果不行,改进change方法
const change = (e) => {
let a = JSON.parse(JSON.stringify(dataLists))
dataLists = a;
that.$forceUpdate();
}
3.还不行,改进dataLists结构
let dataLists = reactive({ data: [] });
所有引用地方改为dataLists.data