Post request headers issue resolved

This commit is contained in:
Neil Arya
2019-09-20 12:53:32 +05:30
parent fdf0d63665
commit 182590ef92

View File

@@ -748,6 +748,14 @@
headers
);
const headersObject = {};
Object.keys(headers).forEach(id=>{
headersObject[headers[id].key] = headers[id].value
});
headers = headersObject;
try {
const payload = await this.$axios({
method: this.method,