Installation
You can install it via yarn or NPM.
Import in our application
Next, open file main.js and insert the following import statement:
In addition add the following line of code right under the import statements:
Now we're ready to use vue-resource within our components.
How to use this library:
The http service can be used globally Vue.http
or in a Vue instance this.$http
.
A Vue instance provides the this.$http
service which can send HTTP requests. A request method call returns a Promise that resolves to the response. Also the Vue instance will be automatically bound to this
in all function callbacks.
Methods:
Shortcut methods are available for all request types. These methods work globally or in a Vue instance.
List of shortcut methods:
get(url, [config])
head(url, [config])
delete(url, [config])
jsonp(url, [config])
post(url, [body], [config])
put(url, [body], [config])
patch(url, [body], [config])
Example how to use in a component:
Example get call:
Example post call:
Building Flexible API Client
I you prefer to build specific API JS modules that you can import into any components and Vuex modules. Building API resource modules allows you to abstract working with HTTP resources, and provide convenience methods for common patterns. here is an example how to create API Client:
Example:
Using client.js
to Make API Clients
Using the above client, you can now build your own specific services for managing articles for example.
Example ArticlesService.js :
Example how to use our service in component :