vue中nextTick和$nextTick

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

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

 

posted @ 2018-03-09 20:45  web前端kelly  阅读(284)  评论(0编辑  收藏  举报