506bbf3144
Bumps [terser](https://github.com/terser/terser) from 4.7.0 to 4.8.1. - [Release notes](https://github.com/terser/terser/releases) - [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md) - [Commits](https://github.com/terser/terser/commits) --- updated-dependencies: - dependency-name: terser dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> |
||
---|---|---|
.github | ||
build | ||
dist | ||
src | ||
storybook | ||
test | ||
.commitlintrc.json | ||
.editorconfig | ||
.eslintignore | ||
.eslintrc.js | ||
.gitignore | ||
.npmignore | ||
.travis.yml | ||
.versionrc.json | ||
babel.config.js | ||
CHANGELOG.md | ||
docker-compose.yml | ||
LICENSE.txt | ||
Makefile | ||
package.json | ||
README.md | ||
tsconfig.json | ||
yarn.lock |
What is Vue Formulario?
Vue Formulario is a library, inspired by Vue Formulate, that handles the core logic for working with forms and gives full control on the form presentation.
Examples
Every form control have to rendered inside FormularioField component. This component provides id
and context
in
v-slot props. Control should use context.model
as v-model and context.runValidation
as handler for blur
event
(it is necessary for validation when property validationBehavior
is demand
). Errors list for a field can be
accessed through context.allErrors
.
The example below creates the authorization form from data:
{
"username": "",
"password": "",
"options": {
"anonymous": false,
"tags": ["test"]
}
}
<FormularioForm
v-model="formData"
name="formName"
>
<FormularioField
v-slot="{ context }"
name="username"
validation="required|email"
validation-behavior="live"
>
<input
v-model="context.model"
type="text"
@blur="context.runValidation"
>
<div v-if="context.allErrors.length > 0">
<span
v-for="(error, index) in context.allErrors"
:key="index"
>
{{ error }}
</span>
</div>
</FormularioField>
<FormularioField
v-slot="{ context }"
name="password"
validation="required|min:4,length"
>
<input
v-model="context.model"
type="password"
>
</FormularioField>
<FormularioFieldGroup name="options">
<FormularioField
v-slot="{ context }"
name="anonymous"
>
<div>
<input
id="options-anonymous"
v-model="context.model"
type="checkbox"
>
<label for="options-anonymous">As anonymous</label>
</div>
</FormularioField>
</FormularioFieldGroup>
<FormularioField
v-slot="{ context }"
name="options.tags[0]"
>
<input
v-model="context.model"
type="text"
>
</FormularioField>
</FormularioForm>
License
Copyright (c) 2020-present, RetailDriver LLC
Copyright (c) 2020-present, Braid LLC