Vue js 2 & Axios Post Request - Form Vue js 2 & Axios Post Request - Form vue.js vue.js

Vue js 2 & Axios Post Request - Form


Axios post format:

axios.post(url[, data[, config]])

Your request should be:

axios.post('http://localhost:3030/api/new/post',     this.name, // the data to post    { headers: {      'Content-type': 'application/x-www-form-urlencoded',      }    }).then(response => ....);

Fiddle: https://jsfiddle.net/wostex/jsrr4v1k/3/