When adding conditional requirements for the v-select in the v-form to be validated, it does not work as expected.
I used
:disabled="this.select3 !== `Y`"
:required="this.select3 === `Y`"
So that when select3 is Y (based on another v-select in the form) this v-select should become enabled and also should be treated as required within the form validation. Otherwise when it is disabled it should not be required and validation should omit it.
However, even when it is disabled it still treated as required. What is the correct way to use reuqired and disabled within the form so that, only enabled items in the form are taken into account for the validation?
Here is the example: https://codepen.io/pokepim/pen/RwGKOMp