Codepen link https://codepen.io/santoshch/pen/bGgKNWV
<div
v-if="this.submitted && $v.user.confirmPassword.$error"
class="error-messages-pass"
>
<span
v-if="
user.confirmPassword &&
!$v.user.confirmPassword.sameAsPassword
"
>kindly re-try</span
>
</div>
Need it as, if for suppose, in 5th character in confirm password is mismatching then it will show error message in 5th character itself saying ,'‘kindly re-try’.
But issue is now it is checking with password field, not at specified character.
For example if user enter in password field "qwerty" and in confirm password field if user enter "qweee"
Now in 4th character, character is mismatching, so then i need to get err message as kindly reerty.