I want to select not only from select drop down options, also I want to add custom tags from users input. In current select, I can only select multiple items from the available itemlists array. But I want to select what ever users insert. Is it possible in iView?
<Select v-model="model9" filterable multiple>
<Option v-for="item in cityList" :value="item.value" :key="item.value">{{ item.label }}</Option>
</Select>
Current problem is, user can only select from the array cityList but I want any custom input from the user.
Thank you.
In v4.0.0 there is an
allow-createprop which allows you to create new items.