I am implementing password validation on my form using Vuetify validation rules:
passwordRules: [
v => (v && v.length >= 1 && v.length <= 10) || 'Password length should be between 1 and 10',
v => (v && v.length <= 35) || 'Max length should be 35',
],
I am facing an issue with the validation where it triggers even when the password length is 0, despite the fact that it should only trigger between lengths 1 and 10 in order to allow for a blank password entry.