el-date-picker 等 点击无反应不回显问题解决
参考链接:https://blog.csdn.net/QQ2856639881/article/details/116918081?spm=1001.2101.3001.6661.1&depth_1-utm_relevant_index=1
最近在做一个动态表单回显。数据嵌套的有点深,使用较为常规的$set重新刷新dom数据发现无效。
this.$set(this.form.list[index],'value',value)
后面使用了上述链接的方法,能够正常回显了!
<el-date-picker @input="onInput()" ...>
<el-input @input="onInput()" ...>
js中
onInput() {
this.$forceUpdate();
},