Jenesius Vue Form
Heavy form system for Vue.js ( Only 3 Version ). Library provides a wide range of
functionality and interaction with form elements.
Documentation
To check out live examples and docs, visit form.jenesius.com.
Questions and Issues
For questions and support please use the GitHub repo.
Quick Example
Usage
This example demonstrates a simple use of this library using the login form as an example.
<template>
<form-field name = "login"/>
<form-field name = "password" type = "password"/>
<button @click = "handleLogin">Login</button>
</template>
<script setup>
import {FormField, Form} from "jenesius-vue-form";
const form = new Form();
function handleLogin() {
console.log(form.values) // { login: "", password: "" }
}
</script>
We connected two fields (login, password), arranged the corresponding types of provided libraries, industrial-level instances.
a form and creating a handler for entering which takes on the value of the form. This is an example of the simplest form of use.
License
MIT
Copyright (c) 2022-present, Jenesius