[Vuejs]-Next/Previous buttons of a table in VueJS with Javascript

1👍

In your code the only property being passed to your tabell component is ‘livescore’ and that’s set to null and never changed. It looks like you need ‘livescore’ to be a computed property that has something to do with table_counter, not a data property, e.g.

computed: {
  livescore() {
    return this.articles[this.table_counter];
  }
}

Leave a comment