[Vuejs]-Reload component after POST api VUEJS

0👍

You could call getAllCustomers() in the then callback of axios.post(), which would refresh customer with the latest data from the database:

axios.post(...).then(() => this.getAllCustomers())

Leave a comment