Skip to content

Sending With Data

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

Data is to be the data sent to the server.

Vue.ajax("http://example.com", {
    url: "http://example.com",
    method: "get",
    data: {
        param1: "First parameter",
        param2: "Second parameter"
    }
});
Clone this wiki locally