q-btn :loading prop kills :disable prop
-
When a condition that makes :disabled work is true after :loading prop has run it no longer makes the button disabled, please see this pen… https://codepen.io/anon/pen/GaOVBX?&editable=true&editors=101
-
@supercat
disabled
is native attribute, usedisable
props. -
Oh god. That was the problem? This is the second time I’ve missed that.
Scott
-
@supercat All props regarding this in Quasar are called
disable
, so it’s easy to remember. There’s nodisabled
nor will ever be. In your case,disabled
is not recognized as a prop so it’s attached as an HTML attribute, which has meaning to Quasar’s CSS. But the correct prop isdisable
. -
Thanks everyone for the great support as always!