Code Monkey home page Code Monkey logo

form-wrapper-js's Introduction

Form Wrapper JS

Form wrapper js

npm MIT codecov CircleCI

A lightweight library that creates forms systems in a convenient and easy way, without dependencies and magic code.

๐ŸŽจ Playground

๐Ÿ’ฟ Installation

npm install --save form-wrapper-js

or

yarn add form-wrapper-js

๐Ÿ“– Documentation

Please check out the Form Wrapper JS website.

๐Ÿš€ Basic Usage

This is a quick example, please check out the website for full documentation.

<template>
  <form @submit.prevent="submit">
    <input type="text" v-model="form.email" />
    <input type="text" v-model="form.name" />
    <input type="text" v-model="form.password" />

    <button type="submit" :disabled="form.$submitting">
  </form>
</template>

<script>
import { Form } from 'form-wrapper-js'
import axios from 'axios'

export default {
  data() {
    return {
      form: new Form({
        email: null,
        name: null,
        password: null,
      }),
    }
  },
  methods: {
    async submit() {
      const { response } = await this.form.submit(form => axios.post('some-url', form.values()))
    }
  },
}
</script>

๐Ÿป Contribute

Code, Docs, Bug reports, Ideas - are more the welcome. โญ

the installation is very easy, take a look at CONTRIBUTING.md file and follow the instructions.

๐Ÿ”’ License

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

form-wrapper-js's People

Contributors

johnmarkt avatar nevoss avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.