Skip to content
This repository has been archived by the owner on Sep 29, 2021. It is now read-only.

eriktisme/vue-simple-form

Repository files navigation

vue-simple-form

Build Status npm version

Simple package to handle forms in Vue.js. Inspired by vform.

Installation

You can install the package via yarn:

yarn add @evandam93/vue-simple-form

Usage

import { reactive } from "vue";
import { Form } from "vue-simple-form";

export default {
  setup() {
    const state = reactive({
      form: new Form({
        name: "John Doe"
      })
    });
    
    // ...
  }
}

Changelog

Please see changelog for more information on what has changed recently.

License

The MIT License (MIT). Please see License File for more information.