0

我不仅想从选择下拉选项中进行选择,还想从用户输入中添加自定义标签。在当前选择中,我只能从可用的 itemlists 数组中选择多个项目。但我想选择用户插入的内容。在 iView 中可以吗?

<Select v-model="model9" filterable multiple>
     <Option v-for="item in cityList" :value="item.value" :key="item.value">{{ item.label }}</Option>
</Select>

当前的问题是,用户只能从数组中选择,cityList但我想要用户的任何自定义输入。

谢谢你。

4

1 回答 1

0

v4.0.0中有一个allow-create道具可以让您创建新项目。

<Select v-model="model18" filterable multiple allow-create @on-create="handleCreate2">
    <Option v-for="item in cityList4" :value="item.value" :key="item.value">{{ item.label }}</Option>
</Select>
于 2019-11-05T15:07:05.383 回答