UNPKG

veui

Version:

Baidu Enterprise UI for Vue.js.

13 lines (11 loc) 298 B
import { isEmpty } from '../../utils/helper' import i18n from '../i18n' export default { validate (val, ruleValue) { return !isEmpty(val) ? val.length <= ruleValue : true }, message (value, ruleValue) { return i18n.get('rules.maxLength', { value, ruleValue }) }, priority: 100 }