1
0
mirror of synced 2024-11-22 05:16:05 +03:00
Go to file
2020-02-27 23:46:25 -05:00
.vscode Initial tests written for validation parsing and rules 2019-11-06 17:17:19 -05:00
build Includes support for slider values, custom validation rules and messages 2020-02-27 01:18:51 -05:00
dist Adds support for plugin architecture 2020-02-27 14:47:24 -05:00
src Adds support for plugin architecture 2020-02-27 14:47:24 -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
.DS_Store Fixes placeholder issue on ios devices 2020-02-27 22:01:05 -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 Removes old cache directory 2020-02-27 23:46:25 -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 Includes support for slider values, custom validation rules and messages 2020-02-27 01:18:51 -05:00
package.json Updates version to 2.0.0-alpha.4 2020-02-27 14:49:45 -05:00
README.md Updates the readmewith list of features 2020-02-27 22:47:24 -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.