1
0
mirror of synced 2024-11-22 05:16:05 +03:00
Go to file
2020-02-28 16:04:55 -05:00
build Improves minified browser build 2020-02-28 11:19:44 -05:00
dist Adds 2.0.2 build assets 2020-02-28 16:04:55 -05:00
src Fix default validation rule language for max to be more accurate. 2020-02-28 14:26:14 -05:00
test Initial file upload tests 2020-02-27 23:39:44 -05:00
themes adds a min-height shim to some text inputs that appear collapsed on ios 2020-02-27 22:06:04 -05: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.0.2 2020-02-28 16:02:42 -05:00
package.json 2.0.2 2020-02-28 16:02:42 -05:00
README.md Cleans up dependencies and bundles requirements in browser minified version 2020-02-28 10:46:08 -05:00

VueFormulate

npm GitHub

Documentation Website

What is Vue Formulate?

Vue Formualte is the easiest way to build forms using Vue. Key features include form and field validation, file uploads, form generation and a single-element fields with labels, help text, error messages, placeholders and lots more.

The syntax is what developers would expect:

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

✓ Create any input element with a single component
✓ Supports Vue v-model binding
Re-populate an entire form from a single object
Generate a form using json
✓ Easy to add field labels
✓ Easy to add help text
✓ Easy to add form validation
✓ Easy to add custom validation rules
✓ Easy to modify validation messages
✓ Easy to add custom inputs

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