[Vuejs]-Mutate object to use in MDbootstrap Vue

0👍

You should assign the value to tableData.rows when available.

this.$store
  .dispatch('allCompanies')
  .then(() => {
    this.tableData.rows = this.$store.getters.getAllCompanies
  })

Leave a comment