最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Input custom text into v-select - Stack Overflow

programmeradmin1浏览0评论

I have a v-select in my project, with set of items, which are ing from my local storage. What i want to achieve is to allow user to input some data in v-select (some data, what do not exist in my storage or items), as well as selecting data from items of v-select and allow them to save it. I tried to do it from @change, but no luck for me. Is it any way to do this properly with vuetify/vue, or i should use some additional libraries? Here is my code of my v-select

           <v-select
          item-text="title"
          item-value="title"
          value="source.position"
          label="position"
          dense
          autoplete
          :items="getPositions()"
          @change="jobPositionUpdate">
        </v-select>

Thank you in advance!

I have a v-select in my project, with set of items, which are ing from my local storage. What i want to achieve is to allow user to input some data in v-select (some data, what do not exist in my storage or items), as well as selecting data from items of v-select and allow them to save it. I tried to do it from @change, but no luck for me. Is it any way to do this properly with vuetify/vue, or i should use some additional libraries? Here is my code of my v-select

           <v-select
          item-text="title"
          item-value="title"
          value="source.position"
          label="position"
          dense
          autoplete
          :items="getPositions()"
          @change="jobPositionUpdate">
        </v-select>

Thank you in advance!

Share asked Mar 16, 2018 at 14:30 Senso HakaiSenso Hakai 1411 gold badge2 silver badges13 bronze badges 3
  • 1 Can you please show us your ponent too? Maybe even a working copy... – Francis Leigh Commented Mar 16, 2018 at 15:16
  • is jobPositionUpdate being called when the select box changes? It should – ProblemsOfSumit Commented Mar 16, 2018 at 20:14
  • 1 I think this question is related. – Traxo Commented Mar 17, 2018 at 9:58
Add a ment  | 

1 Answer 1

Reset to default 10

It seems to me you need to use bobox. According to Vuetify Website "With Combobox, you can allow a user to create new values that may not be present in a provided items list."

<v-bobox
   v-model="selected"
   item-text="title"
   item-value="title"
   value="source.position"
   label="position"
   dense
   :items="getPositions()"
   @change="jobPositionUpdate">
</v-bobox>

Adding a v-model helps with tracking all the things user has selected and/or added to bobox.

Another tip is that using autoplete in v-select is deprecated. see. You can use <v-autoplete> instead

发布评论

评论列表(0)

  1. 暂无评论