v-fetch is a Vue directive to add AJAX to your app without the boilerplate
v-fetch is a directive that adds AJAX functionality to your Vue 2 application so that you don't have to write all of the boilerplate code to call a simple API request to update a model or submit data to an end-point. The goal of v-fetch is to reduce the amount of code in your components and provide a more intuitive interface to making HTTP requests.
Note: This is a work in progress, so the code and API is likely to change quickly.
npm install @shaynekasai/v-fetch --save
First, import and use v-fetch:
import VueFetch from 'v-fetch'
Vue.use(VueFetch);
Simple GET example:
<a href="/api/endpoint" v-fetch v-on:click.prevent>click</a>
Simple GET example that updates a model from the AJAX return call:
<span>{{ message }}</span>
<a href="/api/endpoint" v-fetch="{updateModel: 'message'}" v-on:click.prevent>click</a>
Important! when using updateModel, make sure your end-point returns data using the same name. If you want to access a nested value in the json that is returned from your end-point, see the returnField option below
Simple form example that sends foo
as json to /api/endpoint
:
<form method="post" action="/api/endpoint" v-fetch>
<input type="hidden" name="foo" value="bar">
</form>
Form POST example that sends formModel
data as json and updates the message
data from the return request:
<span>{{ message }}</span>
<a href="/api/endpoint" v-fetch:post="{sendModel: 'formModel', updateModel: 'message'}" v-on:click.prevent>click</a>
v-fetch:get|post|put|patch|delete
updateModel: '<string>'
- the Vue model property to updatesendModel: '<string>'
- the Vue model to send over as a form, json, or query argssendAs: 'json|form'
- send data as json data or as FormDatareturnField: '<string>'
- gets the value from your json end-point using dot notation (arrays/more complex notation not supported yet)eventType: '<string>'
- the event type to useextraParams: <object>
- these get merged intofetch
's extra options.onStart: '<string>'
- calls your method just before the ajax callonComplete: '<string>'
- calls your method after ajax call is completedonError: '<strong>
- calls your method if there's an error
Here are some codepen examples where you can see how this all works:
- Simple example
- Form example
- More complex example
onStart
- before async call is made, includes params used in fetch
onComplete
- after async call is made, includes params used in fetch
onError
- on async error, call is made, includes params used in fetch
v-fetch:start
v-fetch:complete