Vue 异步更新、$nextTick

发布时间 2023-10-09 22:10:53作者: 嘎嘎鸭2

Vue 是异步更新 DOM 的,想要在 dom 更新完成之后做某件事,可以使用 $nextTick

 

 

$nextTick:等 dom 更新后,才会触发执行此方法里的函数体

语法:

this.$nextTick (  () => {

      // 业务逻辑

})

 

eg:

this.$nextTick (  () => {

      this.$refs.inp.focus ()

})