0.1.4 • Published 5 years ago

vue-auto-form-field v0.1.4

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

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:

npm.io

To see more examples please go the documentation