Making vueMultiSelect Fields Searchable and Taggable

Owen Reese:
Is there a way to make a vueMultiSelect field also allow user typing (like a normal input field)?


Hassan Mukhtar:
Yes you can add tag options


Owen Reese:
I tried adding the key to options taggable: true but it did not affect behavior, not sure if that binds properly in the JSON schema or if that needs to be built in HTML?


Hassan Mukhtar:

<multiselect v-model="model.position" placeholder="- Role -" :searchable="true" :taggable="true" :allow-empty="false" :options="model.positions" group-label="label" :group-select="false" group-values="positions" :show-labels="false" @tag="model.selectedProject.Position = $event"></multiselect>

Hassan Mukhtar:
Try something like this this if using html vue multiselect


Delfs:
and searchable? for the BF element too