如何在iview UI中使用多重选择来选择标签

时间:2018-06-25 22:26:45

标签: vue.js iview iview-ui

我不仅要从选择下拉选项中进行选择,还希望从用户输入中添加自定义标签。在当前选择中,我只能从可用的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中进行选择,但我希望从用户那里获得任何自定义输入。

谢谢。

1 个答案:

答案 0 :(得分: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>