如何使用户能够编辑Vue-Select组件中已选择的数据?

时间:2019-03-29 06:54:30

标签: javascript vue.js vue-component

我有vue-select组件:https://sagalbot.github.io/vue-select/ 而且我想让我的用户能够编辑已经选择的数据,但是我在文档中没有找到这样的机会,也许有人处理了这个组件并且会告诉你。

<v-select :options="myOptions" taggable v-model="value" </v-select>

enter image description here

2 个答案:

答案 0 :(得分:0)

该功能称为“标记”,Vue Select通过可标记的道具支持该功能:

<div *ngIf="formGroup.get('features').controls[i].controls.index.invalid && (formGroup.get('features').controls[i].controls.index.dirty || formGroup.get('features').controls[i].controls.index.touched)"                                          class="text-center error">
<p [hidden]="!formGroup.get('features').controls[i].controls.index.errors.required">Index is required.</p>
</div>

如果您想了解更多信息,也可以在文档中找到:Vue Select - Tagging

答案 1 :(得分:0)

维护者回答说,现在没有这种可能性。

https://github.com/sagalbot/vue-select/issues/806