I am changing jquery ajax for axios and I not getting use axios with cross domain:
axios.get(myurl, { headers: { \'crossDomain\': true },
"crossDomain" does not have to be in headers
axios.get(myurl, { crossDomain: true }).then(res => { console.log(res); }).catch(error => { console.log('error', error); })
Regards