multiselect
multiselect copied to clipboard
Issue with Vue 3.5.10 and async options
2.6.10
- Vue version: 3.5.10
Description
Options dropdown doesn't show up and there is infinite loading on component when I use it with those options:
:options="planogramsOptions"
mode="multiple"
:min-chars="3"
:resolve-on-load="!!filters.planograms.length"
:delay="0"
searchable
infinite
:limit="20"
Where planogramsOptions
is function to fetch async options. When I press enter on keyboard, first option gets selected and dropdown show up but can't be closed then. When I downgrade Vue to 3.5.9 it works again. I don't know if it's issue in this library or Vue core (or maybe only on my code), but I just wanted to report this.