You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Could you please add a "disabled" prop. Sometimes you want to block a user to use the autocomplete until he does something else. I can make a PR but the change it's pretty simple.
Hi,
Could you please add a "disabled" prop. Sometimes you want to block a user to use the autocomplete until he does something else. I can make a PR but the change it's pretty simple.
<input
.....
:disabled="disabled"
/>
props: {
disabled: {
type : Boolean,
default: false
}
}
Thanks
The text was updated successfully, but these errors were encountered: