Mapping button disabled attribute to a Vuex getter

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>

1 Like