vue表单验证:vee-validate中文提示

官方文档:https://baianat.github.io/vee-validate/guide/

vee-validate可用于vue项目中进行表单验证,使用方法在官方API上都可以查到;

使用过程中遇到的问题主要是错误提示如何显示为中文,也查看了很多博客,在此记录一下最终的方法。

vee-validate版本:2.0.0-rc.25

import Vue from 'vue'
import message from 'vee-validate/dist/locale/zh_CN'
import VeeValidate,{Validator} from 'vee-validate'

Validator.localize('zh_CN',{
   message: message.messages,  //设置错误提示加载的提示信息
   attributes:{
        name:'用户名',   //设置表单属性对应的中文名    
        password:'密码'
    }
})

Vue.use('VeeValidate')

  

猜你喜欢

转载自www.cnblogs.com/jingmi-coding/p/9263540.html