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

vee-element

v1.0.0-alpha.5

Published

Replaces Element UI's validation engine with Vee Validate

Downloads

259

Readme

Vee Element

A Vue plugin for Element UI that enables the Vee Validate validation library to be used instead of Element's default Async Validator.

Using the Vee Validate driver allows you to set up rules in Element UI like this:

{
  email: 'required|email',
  password: 'required|min:8|max:20'
}

Demo

View the online demo at:

To run the demo locally, see the demo folder:

Setup

Installation

To install in your own projects, run:

npm i -S vee-element

Configuration

Vee Element is a Vue plugin. It needs to be installed after Element UI, and configured by passing in a Vee Validate instance.

// import plugins
import ElementUI from 'element-ui'
import VeeValidate from 'vee-validate'
import VeeElement from 'vee-element'

// configure validator
const rules = {
  // add custom rules
}

const options = {
  // add custom options
}

const validator = new VeeValidate.Validator(rules, options)

// use plugins
Vue.use(ElementUI)
Vue.use(VeeElement, validator) 

Usage

Rules declaration

With the plugin installed, you can write Vee Validate style rules instead of Async Validator style rules:

{
  email: 'required|email',
  password: 'required|min:8|max:20'
}

Note that Vee Element does not support any of the Vee Validate directives; validation is done only through rules passed in to either the Form or Form Item components via props.

Forms

Adding rules to forms is exactly the same as with the original setup:

<el-form :model="values" :rules="rules">
  ...
</el-form>

<script>
export default {
  data () {
    return {
      values: {
        ...
      },
      rules: {
        email: 'required|email',
        password: 'required|min:8|max:20',
      }
    }
  }
}
</script>

Form Items

Adding rules to Form Items will override the rules on the form:

<el-form :model="values" :rules="rules" ref="form">
  <el-form-item label="password" prop="password" :rules="rules.password">
    <el-input type="password" v-model.number="values.password" autocomplete="off"/>
  </el-form-item>
</el-form>

Configuration

Drivers

Vee Element allows you to switch between validators on the fly, by way of drivers.

By default, installing the plugin configures Element UI to use Vee Validate. To reconfigure the plugin to stick with the default Async Validator, pass false as the third argument in the use() statement:

Vue.use(VeeElement, validator, false)

To configure forms to individually to use different validators (for example, when upgrading a large site to Vee Validate, you may wish to go form-by-form) you can set the driver property of ElForm components:

<el-form :model="values" :rules="rules" driver="vee">

The possible values are async or vee.

Rules

For the complete list of built-in rules, see the Vee Validate rules page:

  • https://baianat.github.io/vee-validate/guide/rules.html

To add custom rules, see the Vee Validate custom rules page:

  • https://baianat.github.io/vee-validate/guide/custom-rules.html

For an example of custom Vee Validator setup, see the demo:

Limitations

Vee Element does not yet support dependent fields such as confirmed or date_before:

  • https://github.com/baianat/vee-validate/issues/1628#issuecomment-427100704

This should be fixed in a subsequent Vee Validate release.

A workaround may be released in before this.