[Vuejs]-Vue โ€“ Vuetify server-side datatable bug

1๐Ÿ‘

โœ…

So after countless of trials, I have finally found the solution.

 try {
   let res = await axios.post('/api/departments', this.tableItem)
   this.getDataFromApi().then(data => {
     this.tableData = data.items
     this.totalData = data.total
   })
 }
๐Ÿ‘คJim E Russel

Leave a comment