1
0
mirror of synced 2024-11-22 05:16:05 +03:00
Go to file
2020-02-27 17:47:15 -05:00
.cache Initial commit of the version 2 rewrite 2019-10-07 10:24:30 -04: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 Adds support for plugin architecture 2020-02-27 14:47:24 -05:00
themes Adds support for plugin architecture 2020-02-27 14:47:24 -05:00
.DS_Store Includes support for slider values, custom validation rules and messages 2020-02-27 01:18:51 -05:00
.editorconfig Initial stable functionality 2018-01-30 17:21:21 -05:00
.eslintignore Adds a workaround test for bug vuejs/vue-test-utils#1130 2019-10-31 10:24:18 -04:00
.eslintrc.js Initial commit of the version 2 rewrite 2019-10-07 10:24:30 -04:00
.gitignore Removes coverage from repository 2019-10-31 10:25:06 -04: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 Automatically adds namespacing to formulateModule, more documentation added 2018-01-31 21:52:10 -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 Fixes logo and badges in documentation 2020-02-27 17:47:15 -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"
/>

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