1.1.8 • Published 2 years ago

@xiwell/ant-form-validate-tools v1.1.8

Weekly downloads
3
License
ISC
Repository
-
Last release
2 years ago

ant-form-validate-tools

##example

import { VERIFY_INTEGER } from 'ant-form-validate-tools';
import { Form, Input } from 'ant-design-vue';

export default {
  computed: {
    form () {
      return this.$form.createForm(this, { name: 'example' })
    } 
  },

  render () {
    return (
      <Form>
        <Form.Item label="label">
          {this.form.getFieldDecorator('field', {
            rules: [ VERIFY_INTEGER('error...') ]
          })(
            <Input />
          )}
        </Form.Item>
      </Form>
    )
  }
}
1.1.1

2 years ago

1.1.8

2 years ago

1.1.7

2 years ago

1.1.6

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago