Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 532 Bytes

File metadata and controls

24 lines (17 loc) · 532 Bytes

VUE-JS-JSON-RPC-CLIENT-WITHCREDENTIALS Vue.js integration

Install

$ npm install vue-json-rpc-client-fetch-withcredentials

Open you main.js file and add the following

import JsonRpcVueClient from 'vue-json-rpc-client-fetch-withcredentials'

Vue.use(JsonRpcVueClient, 'URL', 'CREDENTIALS', 'NEWHEADERS', 'DEBUG');

In your .vue file, to make a call just do it using

this.$JsonRpcVueClient.request('method_name', {params})
.then((response) => {
    console.log(response);
})