vue-json-rpc-client-fetch-withcredentials
v1.6.2
Published
A simple vue.js fetch based JSON RPC client written in TypeScript.
Downloads
49
Maintainers
Readme
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);
})