728x90
If you want to extend vee-validate for mobile_number,
Implement validate function for validate check.
And message function will be used to represent for validation message.
extend("mobile", {
validate(value) { return /^01([0|1|6|7|8|9])([0-9]{3,4})([0-9]{3,4})$/.test(value) },
message(_, values) {return 'error'}
}
)
extend custom rules - logaretm.github.io/vee-validate/guide/localization.html#using-other-i18n-libraries
i18n for message - logaretm.github.io/vee-validate/guide/localization.html#using-other-i18n-libraries
728x90
'IT' 카테고리의 다른 글
파이썬 관계필드(Foreingkey) 마이그레이션 방법 (0) | 2020.11.26 |
---|---|
워드 메모 없이 인쇄. (0) | 2020.11.25 |
ValidationProvider required_if (3) | 2020.11.19 |
vuetify success-messages line break (0) | 2020.11.18 |
django 업데이트 시 파일 및 이미지 삭제. (0) | 2020.11.16 |