I have a custom dropdown created using vue-multiselect
. It should be a simple dropdown that lists the selected choices as tags. It works, but when I add other dropdowns the selected tags in one dropdown appear in all of the rest. How can I make so that each dropdown shows only the selected options for it without filling the other dropdowns?
Here is my code:
<multiselect
v-model="value"
tag-placeholder="Add this as new tag"
placeholder="Assesors"
label="name"
track-by="code"
:options="options"
:multiple="true"
:taggable="true"
></multiselect>
<multiselect
v-model="value"
tag-placeholder="Add this as new tag"
placeholder="Assesors"
label="name"
track-by="code"
:options="options"
:multiple="true"
:taggable="true"
></multiselect>
<multiselect
v-model="value"
tag-placeholder="Add this as new tag"
placeholder="Assesors"
label="name"
track-by="code"
:options="options"
:multiple="true"
:taggable="true"
></multiselect>
and my javascript:
data() {
return {
showAddUserDialog: false,
value: [],
options: [
{ name: "Assesors", code: "as" },
{ name: "Finance", code: "fi" },
{ name: "Sales", code: "sa" },
]
}
}
and a working codepen:
https://codesandbox.io/s/multiselect-tag-example-forked-qecqn