1👍
You need to watch the state change via a computed property (here with typescript):
const isButtonDisabled: ComputedRef<boolean> = computed((): boolean => SubmitButtonState(formResponses, errors) );
- [Vuejs]-VeeValidate localization "Property 'locale' does not exist on type 'Validator'."
- [Vuejs]-Nuxt.js passing prop to component's inner element
Source:stackexchange.com