0.1.0 • Published 6 years ago

vue-form-support v0.1.0

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

Vue Form Support

NPM Version Build Status Dependencies Dev Dependencies

A simple Vue.js plugin to handle AJAX form requests.

Installation

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

npm install vue-form-support

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

import { FormMixin } from 'vue-form-support'

export default {
    mixins: [
        FormMixin,
    ],

    //
}

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

import Vue from 'vue'
import VueFormSupport from 'vue-form-support'

Vue.use(VueFormSupport)

Usage

Documentation coming soon.