This package is a validation c

vue-validatejs

This package is a validation component based on validate.js. It provides a simple and flexible way to validate and show error messages for individual properties.

Usage

Because it relies on validate.js, all examples about validations can be checked at their docs. To use this component you have to import it into your component.

import VueValidate from 'vue-validatejs' export default { name: 'App', components: { VueValidate }, data () { return { model: {}, validation: {name: {presence: {allowEmpty: false}}} } } }

Then in your html create a tag passing the model, the property to validate and the validation

<vue-validate :model="model" :validation="validation" property-name="name"></vue-validate>

And that's it. A error message will be generated if the field fail any validation.

版权声明:

1、该文章(资料)来源于互联网公开信息,我方只是对该内容做点评,所分享的下载地址为原作者公开地址。
2、网站不提供资料下载,如需下载请到原作者页面进行下载。