# @evandam93/vue-simple-form

> A simple form helper for Vue.js written in TypeScript.

Latest version **1.0.2** (published 2019-11-16) · MIT license · 0 weekly downloads

## Install

```sh
npm install @evandam93/vue-simple-form
pnpm add @evandam93/vue-simple-form
yarn add @evandam93/vue-simple-form
bun add @evandam93/vue-simple-form
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.2 |
| Published | 2019-11-16 |
| First published | 2019-11-16 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 153.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Erik |
| Maintainers | evandam93 |
| Keywords | vue, vue.js, form, typescript |

## Links

- npm: https://www.npmjs.com/package/@evandam93/vue-simple-form
- Repository: https://github.com/eriktisme/vue-simple-form
- Issues: https://github.com/eriktisme/vue-simple-form/issues
- npm.io page: https://npm.io/package/@evandam93/vue-simple-form

## Alternatives

- [mobx-react](https://npm.io/package/mobx-react.md) — 2.8M weekly downloads
- [rc-tree](https://npm.io/package/rc-tree.md) — 2.6M weekly downloads
- [@react-oauth/google](https://npm.io/package/@react-oauth/google.md) — 1.3M weekly downloads
- [@wagmi/connectors](https://npm.io/package/@wagmi/connectors.md) — 877.0K weekly downloads
- [vee-validate](https://npm.io/package/vee-validate.md) — 836.4K weekly downloads

## Recent versions

- 1.0.2 (latest) — 2019-11-16
- 1.0.1 — 2019-11-16
- 1.0.0 — 2019-11-16
- 0.1.0 — 2019-11-16

## README

# vue-simple-form
[![Build Status](https://travis-ci.org/eriktisme/vue-simple-form.svg?branch=master)](https://travis-ci.org/eriktisme/vue-simple-form) [![npm version](https://badge.fury.io/js/%40evandam93%2Fvue-simple-form.svg)](https://badge.fury.io/js/%40evandam93%2Fvue-simple-form)

Simple package to handle forms in Vue.js. Inspired by [vform](https://github.com/cretueusebiu/vform).

## Installation

You can install the package via yarn:

```bash
yarn add @evandam93/vue-simple-form
```
## Usage

```javascript
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](CHANGELOG.md) for more information on what has changed recently.

## License
The MIT License (MIT). Please see [License File](LICENSE) for more information.

---
_Source: https://npm.io/package/@evandam93/vue-simple-form · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
