You can do it with a normal post $http.post('http://domain.com/'), however the domain must support CORS. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Access_control_CORS
- Backend server should set
Access-Control-Allow-Originto*or[ Frontend server domains whitelist ]Vue.http.options.xhr = { withCredentials: true }is not needed.urlmust begin withhttp(s)://. e.g.localhost:8080would fail.
Most helpful comment