0.1.35 • Published 5 years ago

@appoly/smartschema-vue v0.1.35

Weekly downloads
8
License
ISC
Repository
github
Last release
5 years ago

SmartSchema-Vue

SmartSchema-Vue is a VueJS package to help generate forms

Installation

Use the package manager npm or yarn to install smart schema.

npm i @appoly/smartschema-vue --save
yarn add @appoly/smartschema-vue

Usage

import '@appoly/smartschema-vue';

<smart-schema :schema="smartschema" action="/test" method="post" validateOnBlur="false"></smart-schema>

For Laravel projects take a look at our composer package https://github.com/appoly/smart-schema-2

var schema = smartschema: {
    items: [
        {
            items: [
                {
                    name: 'first_name',
                    type: 'text',
                    label: 'First Name',
                    placeholder: 'First name',
                    validationRules: 'required|min:5'
                },
                {
                    name: 'last_name',
                    type: 'text',
                    label: 'Last Name',
                    placeholder: 'What is your last name?',
                    validationRules: 'required|min:5|max:6'
                }
            ]
        },
        {
            type: 'textarea',
            name: 'address',
            label: 'Address',
            placeholder: 'What is your address?'
        }
    ]
}

Inputs

  • Text
  • Number
  • Date
  • Textarea
  • Email
  • File
  • Hidden
  • Url
  • Select

All inputs have the following properties

  • name
  • label
  • placeholder
  • validationRules
  • value

Select allows the Option property, which can be a Key Value Object or just an Array

Validation

Currently only validation strings are accepted ie. required|min:5|max:20

  • required - True or False
  • min:{length} - The minimum length the form input can be
  • max:{length} - The maximum length the form input can be
0.1.34

5 years ago

0.1.35

5 years ago

0.1.32

5 years ago

0.1.33

5 years ago

0.1.31

5 years ago

0.1.30

5 years ago

0.1.29

5 years ago

0.1.27

5 years ago

0.1.28

5 years ago

0.1.26

5 years ago

0.1.25

5 years ago

0.1.23

5 years ago

0.1.24

5 years ago

0.1.21

5 years ago

0.1.22

5 years ago

0.1.20

5 years ago

0.1.19

5 years ago

0.1.17

5 years ago

0.1.18

5 years ago

0.1.15

5 years ago

0.1.16

5 years ago

0.1.13

5 years ago

0.1.14

5 years ago

0.1.12

5 years ago

0.1.11

5 years ago

0.1.10

5 years ago

0.1.9

5 years ago

0.1.8

6 years ago

0.1.7

6 years ago

0.1.6

6 years ago

0.1.4

6 years ago

0.1.5

6 years ago

0.1.3

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago