tdzl2003 / mobx-form-validate

31 stars 8 forks source link

[feature] support array type of req & msg #2

Open PizzaLiu opened 7 years ago

PizzaLiu commented 7 years ago

添加多个 validate 串联的支持:

@observable
@validate([/^.+$/, /^[abc]+$/, /^[abc]{3}$/], ['请输入密码', '只能有abc', '必须是3位字符'])
password = '';