2017-09-01 57 views

回答

0

當然,你可能需要改寫的錯誤信息,或添加新的。 Validator類及其實例提供了一個updateDictionary方法。這將把消息與內部字典合併,覆蓋任何重複。

import { Validator } from 'vee-validate'; 
const dictionary = { 
    en: { 
    messages:{ 
     alpha:() => 'Some English Message' 
    } 
    }, 
    ar: { 
    messages: { 
     alpha:() => 'Some Arabic Message' 
    } 
    } 
}; 

Validator.updateDictionary(dictionary); 

const validator = new Validator({ first_name: 'alpha' }); 

validator.setLocale('ar'); // now this validator will generate messages in arabic. 

這裏的V型驗證插件的鏈接 - http://vee-validate.logaretm.com/rules.html#custom-messages

相關問題