jayson-rpc-vue
v1.1.2
Published
Jayson rpc client vue integration
Downloads
16
Maintainers
Readme
JAYSON-RPC Vue.js integration
Install
$ npm install jayson-rpc-vue
Open you main.js
file and add the following
import JaysonRPC from 'jayson-rpc-vue'
Vue.use(JaysonRPC, 'URL', https = false);
In your .vue file, to make a call just do it using
this.$JaysonRPC.request('method_name', ['params'], function(err, response) {
if (err) throw err;
console.log(response.result); // 2
});