Vue Button disabled attr is not reactive
Closed this issue · 3 comments
lmiller1990 commented
I think we are missing a :disabled
binding.
const val = ref(true)
setTimeout(() => val.value = false)
<Button :disabled="val" /> // will no update reactively
elevatebart commented
Thank you for this report.
We had similar reports in the past and I think I fixed it.
Did you update to the latest version of the button?
elevatebart commented
this test added recently, specifically tests your use case.
lmiller1990 commented
I will try updating!