[Vuejs]-Network errors while updating through axios

0👍

Use an end line '/' from your front end.

axios.put('/events/' + this.$route.params.id + '/', this.form)
     .then(response => location.reload())

Leave a comment