mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-20 13:49:40 +02:00
16 lines
393 B
JavaScript
16 lines
393 B
JavaScript
export const validators = {
|
|||
data() {
|
|||
return {
|
|||
emailRule: v =>
|
|||
!v ||
|
|||
/^\w+([.-]?\w+)*@\w+([.-]?\w+)*(\.\w{2,3})+$/.test(v) ||
|
|||
this.$t('user.e-mail-must-be-valid'),
|
|||
|
|||
existsRule: value => !!value || this.$t('general.field-required'),
|
|||
|
|||
minRule: v =>
|
|||
v.length >= 8 || this.$t('user.use-8-characters-or-more-for-your-password'),
|
|||
};
|
|||
},
|
|||
};
|