Не могу понять почему на локалку Post проходит, но точно такой-же Post на сервер слетает по net::Error
const str = JSON.stringify(params);
this.$axios.$post("
https://api-xxxxxx.com/api/v1/contact/", str, config)
.then(function (response) {
console.log(
response.id);
})
.catch(function (error) {
console.log(error);
});
this.$axios.$post("http://blogapi/api/v1/contact/", str, config)
.then(function (response) {
console.log(
response.id);
})
.catch(function (error) {
console.log(error);
});