You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/pages/tutorials/dynamic-form-generator.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ import LiveExample from '@/components/LiveExample.vue';
12
12
13
13
Building forms is often a repetitive task and requires a lot of back and forth to maintain. Maybe your client asked to add a field, maybe they asked to remove a field.
14
14
15
-
For most cases using static markup is good enough for your form needs but in some cases, it would be great if you had a dynamic form generator that would quickly render your fields based on some JSON schema.
15
+
For most cases using static markup is good enough for your form needs but in some cases, it would be great if you had a dynamic form generator that would quickly render your fields based on some javascript object schema.
16
16
17
17
In this tutorial, you will learn how to use vee-validate to build a form-generator without external libraries.
18
18
@@ -479,7 +479,7 @@ You can check a live sample of what we did here.
479
479
480
480
## Conclusion
481
481
482
-
In this guide, you learned how to use the dynamic rendering capabilities of Vue.js combined with the flexible nature of the vee-validate components. You created a form that renders fields and validates them based on a JSON schema.
482
+
In this guide, you learned how to use the dynamic rendering capabilities of Vue.js combined with the flexible nature of the vee-validate components. You created a form that renders fields and validates them based on javascript object schema.
483
483
484
484
While the finished product is far from being complete, you can add features as needed to your form generator.
0 commit comments