Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

jenesius-vue-form

Package Overview
Dependencies
Maintainers
0
Versions
125
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jenesius-vue-form

Heavy form system for Vue.js

  • 3.0.21
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
69
increased by43.75%
Maintainers
0
Weekly downloads
 
Created
Source

Vue logo

Downloads Downloads Issue Stars

Jenesius Vue Form

Powerful system for working with forms and inputs. The deep library integrates with Vue (3 version only) and provides a large set of tools for working with forms.

Documentation

To check out live examples and docs, visit form.jenesius.com.

Integration with other UI libraries

This section is described in this part of the documentation

Questions and Issues

For questions and support please use the GitHub repo.

Quick Example

Alt Text

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

Keywords

FAQs

Package last updated on 31 Oct 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc