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