multiselect icon indicating copy to clipboard operation
multiselect copied to clipboard

Issue with Vue 3.5.10 and async options

Open pawel-omniaz opened this issue 5 months ago • 1 comments

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.

pawel-omniaz avatar Oct 01 '24 08:10 pawel-omniaz