If I use the props :searchable="false" and :multiple="true" the placeholder text is replaced by the label of the first chosen option.
Steps to reproduce:
- Define a multiselect component
<multiselect v-model="myModel" :options="myOptions" track-by="id" label="content" :searchable="false" :multiple="true" placeholder="myPlaceholder"></multiselect>
- Select the first option.
Expected
placeholder stays "myPlaceholder".
Actual
placeholder changes to whatever option you have chosen first
Introduced in PR: #164
(Before that it worked fine)
If I use the props
:searchable="false"and:multiple="true"the placeholder text is replaced by the label of the first chosen option.Steps to reproduce:
Expected
placeholder stays "myPlaceholder".
Actual
placeholder changes to whatever option you have chosen first
Introduced in PR: #164
(Before that it worked fine)