当前位置:   article > 正文

vue.js表单验证_Vue.js的验证表单

vue.js item.koc_checktype==1?'审核通过':item.koc_checktype==2?'审核不通过':

vue.js表单验证

将验证 (willvalidate)

Validation Forms for Vue.js.

Vue.js的验证表单。

建立 (Setup)

安装依赖 (Install dependencies)
npm install willvalidate --save
进入main.js vuejs(单个文件组件) (Into main.js vuejs (Single File Components))
  1. import Vue from 'Vue'
  2. import willvalidate from 'willvalidate'
  3. Vue.use(willvalidate)

用法 (Usage)

例如:方法内 (Ex: within methods)
  1. export default {
  2. methods:{
  3. sendForm()
  4. {
  5. this.willvalidate( document.querySelector("#form") ) ? console.log("ok") : console.log("error")
  6. }
  7. }
  8. }

或在脚本标签中 (Or in script tag)

<script src="./PATH/node_modules/willvalidate/dist/willvalidate.js"></script>
使用Attr html5进行验证 (Use Attr html5 for validation)
Ex: require, maxlength, minlength, type, pattern, min, max and others

定制 (Customize)

  1. # error class
  2. .has-danger{}
  3. # set errorMessage | optional - if not informed will show default message
  4. Ex: <input type="number" min="5" max="20" errorMessage="Preencha corretamente" required />

翻译自: https://vuejsexamples.com/validation-forms-for-vue-js/

vue.js表单验证

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/110932
推荐阅读
相关标签
  

闽ICP备14008679号