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