vuejs
Basic axios vuepost request
formSubmit(e) {
e.preventDefault();
axios.post('/api/addorderres',{
name:this.name,
mobile:this.mobile,
tableno:this.tableno,
members:this.members
})
.then((response)=>{
this.number = response.data
}).catch((error)=>{
console.log(error);
});
}
This code basically makes a post request to the backend API for sending the form data for registration purpose
Was this helpful?
Similar Posts