Vue 异步更新、$nextTick

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

 

 

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

语法:

this.$nextTick (  () => {

      // 业务逻辑

})

 

eg:

this.$nextTick (  () => {

      this.$refs.inp.focus ()

})

posted @ 2023-10-09 22:01  1stzz1  阅读(7)  评论(0编辑  收藏  举报