$ 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);
})