0👍
You should assign the value to tableData.rows
when available.
this.$store
.dispatch('allCompanies')
.then(() => {
this.tableData.rows = this.$store.getters.getAllCompanies
})
Source:stackexchange.com
0👍
You should assign the value to tableData.rows
when available.
this.$store
.dispatch('allCompanies')
.then(() => {
this.tableData.rows = this.$store.getters.getAllCompanies
})