vue dom元素没有刷新,等待dom元素更新this.$nextTick,(如果ref对象存在v-if)

tech2022-09-07  101

等待dom更新,在执行之后的代码。

this.$nextTick(()=>{ //操作dom部分代码 }); this.$nextTick(() => { let a = this.$refs.dd[0]; a.focus(); });
最新回复(0)