[Vuejs]-Vue infinite loading with axios is skipping the page 2

0👍

mounted(){
  //this.getComments();
},

I was calling the this.getComments(); twice. Once when the component was mounted and another time on infinite load.

Leave a comment