Vee-Validate的使用方法详解
引入:
npminstallvee-validate--save
vue代码:
importVeeValidatefrom'vee-validate'; importzh_CNfrom'vee-validate/dist/locale/zh_CN';//引入中文包,提示信息可以以中文形式显示 import{Validator}from'vee-validate'; Validator.addLocale(zh_CN);//设置提示信息中文方式显示 constconfig={ errorBagName:'errors', fieldsBagName:'fields', delay:100, locale:'zh_CN', strict:true, enableAutoClasses:true, events:'blur', inject:true }; //自定义提示信息 constdictionary={ zh_CN:{ messages:{ ip:()=>'ip格式不正确