Skip to content

Asynchronous

Fatih Koca edited this page Nov 27, 2019 · 1 revision

By default, all requests are sent asynchronously (i.e. this is set to true by default). If you need synchronous requests, set this option to false.

Default value is true.

Vue.ajax.get("http://example.com", {}, {
    async: true
});
Clone this wiki locally