npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vue-element-validation

v1.1.6

Published

vue-element-validation

Downloads

10

Readme

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