1.1.6 • Published 4 years ago

vue-element-validation v1.1.6

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

vue-element-validation

This is a user-defined component that can quickly verify the form, which is applicable to the projects built by Vue + element UI.

Some common methods are provided to eliminate the tedious problem that the traditional verification is written to the rules object.

Install

npm i vue-element-validation

Github

Source Link

Example

Add parameters to the elements to be verified :rules Pass in the vCheck() methods and parameters to verify the form.

// Step1: ./src/main.js

import Validation from 'vue-element-validation'
Vue.use(Validation)

// Step2: ./src/pages/index.vue

<el-form :model="form">
  <el-form-item
    label="Name"
    prop="name"
    :rules="vCheck({ required: true, trigger: 'blur' })">
    <el-input type="text" v-model="form.name"></el-input>
  </el-form-item>
</el-form>

TypeScript

This global component supports the Vue project based on typescript.

Attributes

参数说明Desc
required是否必填Is it necessary to fill in
trigger校验触发事件Verification trigger event
max最大长度Maximum length
message校验提示信息Verification prompt information
min最小值Minimum value
minNum最小数值Minimum value
max最大值Maximum value
maxNum最大数值Maximum value
type='notEarlier'不能早于当前时间Cannot be earlier than the current time
type='notFutureTime'不能为未来时间Not for the future
type='number'数字校验Digital check
type='date'日期时间校验Date time verification
type='mobile'手机校验Mobile phone calibration
type='email'邮箱校验Mailbox check
type='idCard'身份证校验Verification of ID card
type='url'url校验URL check
type='characters'中英文字符串或者下划线Chinese and English strings or underscores
type='integer'正整数positive integer
type='int'整数(包括正负)Integer (including positive and negative)
type='upperCaseNumber'匹配由数字和26个英文字母组成的字符串Matches a string of numbers and 26 English letters
type='money'验证金额Verification amount
type='sales'验证折扣Verification discount
type='decimal'验证最多保留两位小数的正数Verify that a positive number of up to two decimal places is retained
type='fourdecimal'验证最多保留四位小数的正数Verify that a positive number of up to four decimal places is retained
type='decimals'最多保留两位小数的正数或负数Keep up to two decimal places positive or negative
type='mouseDecimal'校验最多为 item.decimal(页面中设置的参数) 位小数的正数或负数Verify up to a positive or negative number of decimal places in item.decimal (parameter set in the page)

Thanks

Thank you for your support - Lean

1.1.6

4 years ago

1.1.5

4 years ago

1.1.3

4 years ago

1.1.2

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.9

5 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago