Skip to content

Latest commit

 

History

History
41 lines (31 loc) · 985 Bytes

README.md

File metadata and controls

41 lines (31 loc) · 985 Bytes

vue-auto-form-field

Vue-auto-form-field is a Vue library that allow you to create form dynamically from JSON.

Documentation:

To see how to use it please read the DOCUMENTATION

Example:

This json:

{
    name: {
        "@label": "Name",
    },
    birthDate: {
        "@label": "Birth Date",
        "@options": {"displayAs": "datetime", "data": {"type": "date", "format": "DD-MM-YYYY", "dateFormat": "DD-MM-YYYY"}}
    },
    email: {
        "@label": "Email",
    },
    password: {
        "@label": "Password",
        "@options": {"displayAs": "password"}
    },
    confirmPassword: {
        "@label": "Confirm Password",
        "@options": {"displayAs": "password"}
    }
}

Become this form:

To see more examples please go the documentation