You need to use Vue bindings otherwise the disabled
prop value is going to be interpreted as the string “isAuthenticating”, which is a truthy value:
<ion-button :disabled="isAuthenticating"></ion-button>
You need to use Vue bindings otherwise the disabled
prop value is going to be interpreted as the string “isAuthenticating”, which is a truthy value:
<ion-button :disabled="isAuthenticating"></ion-button>