<ul > Vue({
    el:'#demo',
    data:{
      list=[0,1,2,3,4,5,6,7,8,9,10]
    },
    methods:{
      push:function(){
          this.list.push(11);
          this.nextTick(function(){
             alert('数据已经更新')
          });

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

 

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

相关文章:

  • 2021-12-15
  • 2021-11-19
  • 2022-12-23
  • 2018-11-22
  • 2021-11-18
  • 2021-11-29
猜你喜欢
  • 2021-06-20
  • 2022-12-23
  • 2022-12-23
  • 2022-01-22
  • 2021-10-12
相关资源
相似解决方案