[Vuejs]-Vuelidate: `not` validator not working with `sameAs` if value is computed

-1👍

I think could had a bug on this combination of validations. I had the same problem and tried that solution and worked well for me:

notSameAsComputed: {
    notSameAs: not(sameAs(computed(() => formData.username)))
},

Leave a comment