[Vuejs]-Validate multiple input fields in same form using vue 3 composition api

1👍

You need to watch the state change via a computed property (here with typescript):

const isButtonDisabled: ComputedRef<boolean> = computed((): boolean => SubmitButtonState(formResponses, errors) );

👤helle

Leave a comment