Skip to content

Commit f8dd2e5

Browse files
authored
Change schema type name from JSON to js object (#4193)
1 parent 8e3663d commit f8dd2e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/pages/tutorials/dynamic-form-generator.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import LiveExample from '@/components/LiveExample.vue';
1212

1313
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.
1414

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.
1616

1717
In this tutorial, you will learn how to use vee-validate to build a form-generator without external libraries.
1818

@@ -479,7 +479,7 @@ You can check a live sample of what we did here.
479479

480480
## Conclusion
481481

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.
483483

484484
While the finished product is far from being complete, you can add features as needed to your form generator.
485485

0 commit comments

Comments
 (0)