vue中nextTick和$nextTick

Posted web前端

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue中nextTick和$nextTick相关的知识,希望对你有一定的参考价值。

* `Vue.nextTick(callback)`,当数据发生变化,更新后执行回调。
* `Vue.$nextTick(callback)`,当dom发生变化,更新后执行的回调。

this.nextTick(function(){
     alert(‘数据已经更新‘)
});
this.$nextTick(function(){
     alert(‘v-for渲染已经完成‘)
})

 

以上是关于vue中nextTick和$nextTick的主要内容,如果未能解决你的问题,请参考以下文章

Vue.nextTick和Vue.$nextTick

Vue $nextTick

Vue Watch 的原理 和 $nextTick() 通俗理解

Vue.nextTick()

Vue.nextTick(callback)

Vue.nextTick(callback)