vue-ajax-support

0.1.1 • Public • Published

Vue AJAX Support

NPM Version Build Status Dependencies Dev Dependencies

A simple Vue.js plugin to handle AJAX requests.

Installation

To install vue-ajax-support via NPM, run:

npm install vue-ajax-support

The easiest way to use the Vue AJAX support plugin, is to import the mixin directly in your Vue component:

import { AjaxMixin } from 'vue-ajax-support'

export default {
    mixins: [
        AjaxMixin,
    ],

    //
}

If you'd rather have access to the Vue AJAX support mixin and component globally, then and the following to your JavaScript bootstrap file instead:

import Vue from 'vue'
import VueAjaxSupport from 'vue-ajax-support'

Vue.use(VueAjaxSupport)

Usage

Documentation coming soon.

Readme

Keywords

Package Sidebar

Install

npm i vue-ajax-support

Weekly Downloads

2

Version

0.1.1

License

MIT

Unpacked Size

8.31 kB

Total Files

5

Last publish

Collaborators

  • samwrigley