1
0
mirror of synced 2024-11-22 05:16:05 +03:00
Go to file
Justin Schroeder 35ab510f85 2.2.11
2020-04-29 10:24:27 -04:00
.github/ISSUE_TEMPLATE Adds new github issue templates 2020-03-06 10:16:38 -05:00
build Adds support for @braid/vue-formulate-i18n 2020-03-07 09:03:59 -05:00
dist generating build assets 2020-04-28 12:03:21 -04:00
src adding FormulateInput deregister functionality 2020-04-28 12:00:38 -04:00
test adding FormulateInput deregister functionality 2020-04-28 12:00:38 -04:00
themes Adds title to filenames and better long-filename styling 2020-03-09 11:03:33 -04:00
.editorconfig Initial stable functionality 2018-01-30 17:21:21 -05:00
.eslintignore Removes old cache directory 2020-02-27 23:46:25 -05:00
.eslintrc.js Initial commit of the version 2 rewrite 2019-10-07 10:24:30 -04:00
.gitignore Updates package to version 2.0.0 2020-02-27 23:49:55 -05:00
.travis.yml Updates build to use node 11 2019-11-01 14:35:06 -04:00
babel.config.js Removes debugging artifacts for Travis CI troubleshooting 2019-11-01 21:03:01 -04:00
LICENSE.txt Update license year 2020-02-27 22:36:53 -05:00
package-lock.json 2.2.11 2020-04-29 10:24:27 -04:00
package.json 2.2.11 2020-04-29 10:24:27 -04:00
README.md Merge branch 'master' into feature/i18n-bump 2020-03-09 10:48:15 -04:00

VueFormulate

npm GitHub

Documentation Website

What is Vue Formulate?

Vue Formulate is the easiest way to build forms using Vue. Key features include form and field validation, file uploads, form generation, single-element inputs that support labels, help text, error messages, placeholders and more, and comprehensive documentation for use within your own projects.

Vue Formulate lets you:

✓ Create any input element with a single component
✓ Use v-model binding on fields and entire forms
Re-populate an entire form from a single object
Generate a form using json
✓ Easily add field labels
✓ Easily add help text
✓ Easily add form validation
✓ Easily add custom validation rules
✓ Easily create custom validation messages
✓ Easily create custom inputs

There's a lot more available to read at the comprehensive documentation website.

v-model an entire form Well-considered file uploads
v-model an entire form well-considered file uploads

How is Vue Formulate used?

The syntax is what developers would expect. To create an input you use the FormulateInput element and provide it with a few props:

<FormulateInput
  v-model="value"
  type="email"
  name="email"
  label="What is your email address"
  help="Where should we contact you?"
  validation="required|email"
/>

Collecting multiple FormulateInput elements within a single FormulateForm element (even deeply nested) allows you to v-model your entire form.

Comprehensive Documentation

There's a lot more available to read at the comprehensive documentation website.