I have problem with vue axios.
I am trying to send data using get / put but I can not read it on the server side. Using POST everything works, so I do not know what the problem is. Btw. Everything works in PostMan.
axios({
method: 'PUT',
url: `http://example.org`,
data: Qs.stringify(data),
}).then(response => (console.log(response.data)))