[Vuejs]-Perform patch operation on the data

0👍

You could use put request in your axios. see code below

axios.put('api endpoint'+this.student.id, this.student).then(({data}) => {
      ... success    
})

Leave a comment