I am experiencing an issue where the dropdown closes after the first selection, despite setting close-on-select="false"
. However, it works properly after the initial select.
You can observe this behavior directly on the homepage at the following link: vue-multiselect
Alternatively, you can watch a video demonstration here
Below is the code snippet:
<Multiselect
v-model="form.users_ids"
id="students"
label="name"
class="chat-bulk-form-mul"
:custom-label="nameWithRelation"
:options="optionUsers"
:multiple="true"
:clear-on-select="false"
:close-on-select="false"
:preserve-search="true"
:hide-selected="true"
:max-height="200"
:internal-search="false"
@async-find="asyncFind"
@infinite-scroll="infiniteScroll"
/>