@evandam93/vue-simple-form
v1.0.2
Published
A simple form helper for Vue.js written in TypeScript.
Downloads
4
Readme
vue-simple-form
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.