|
1 | 1 | # VUE FORM BUILDER |
2 | 2 |
|
3 | | -`VueFormBuilder` is a Vue3 plugin that automatically generates beautiful forms |
| 3 | +`VueFormBuilder` is a Vue plugin that automatically generates beautiful forms |
4 | 4 | from declarative rules. |
5 | 5 |
|
6 | 6 | 1. [Features](#features) |
@@ -31,22 +31,30 @@ from declarative rules. |
31 | 31 | - aliases for reusing common rules |
32 | 32 | - can prefill the form with given model |
33 | 33 | - can set default field values (useful in form reset) |
34 | | -- support for UI frameworks (Vuetify, Primevue, and more) |
| 34 | +- support for UI frameworks (Vuetify, Primevue, BootstrapVue, and more) |
35 | 35 | - shows error messages (compatible with Laravel API) |
36 | 36 | - shows success messages |
37 | 37 | - validates fields when user enters input |
38 | 38 | - validates form upon submission |
39 | 39 | - user-defined validation rules |
40 | 40 | - custom Vue components |
| 41 | +- support for Vue2 and Vue3 |
41 | 42 |
|
42 | 43 | ## DEMO |
43 | 44 |
|
44 | | -A demo app is available: |
| 45 | +A demo app for `Vue3` is available in the GitHub Pages of this package: |
| 46 | +[uwla.github.io/vue-form-builder/demo](https://uwla.github.io/vue-form-builder/demo). |
| 47 | + |
| 48 | +There is also another demo, but for `Vue2`, available on CodeSandbox: |
45 | 49 |
|
46 | 50 | - [live demo](https://4rxmw4.csb.app/) |
47 | 51 | - [live demo and code](https://codesandbox.io/s/vue-form-builder-demo-4rxmw4) |
48 | 52 | - [code](https://github.com/uwla/vue-form-builder-demo) |
49 | 53 |
|
| 54 | +The demo for `Vue2` (built with an earlier version of this plugin) can also be |
| 55 | +replicated in `Vue3` with the latest versions of this plugin. So, both demos are |
| 56 | +worth playing with. |
| 57 | + |
50 | 58 | ## EXAMPLE |
51 | 59 |
|
52 | 60 | SImple example: |
|
0 commit comments