[Vuejs]-How to fetch comment associated with post using Vue

0👍

Your function fetchComment takes 2 arguments, you aren’t sending it any.

fetchComment: function (category_id, title)

ready: function () {
  this.fetchComment() //needs arguments
}

Leave a comment