Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
451 views
in Technique[技术] by (71.8m points)

vue.js - v-autocomplete not filtering v-list items

I am trying to setup v-list with v-autocomplete. The dropdown for the v-autocomplete shows with list items but I am not able to find the item by typing. I am able to type but the filtering process doesn't work. Below is code of how I am implementing it. I am using vuetify version 2.3.10. Please help me find where I am going wrong.

<v-autocomplete
 item-value="id"
 no-filter
 v-model="selectedUser"
 item-text="full_name"
 label="User*"
 :items="users"
 placeholder="Start typing...">
 <template slot="item" slot-scope="data">
  {{ data.item.full_name }}
 </template>
 <template slot="item" slot-scope="data">
  <template>
   <v-list-item-avatar>
    <img :src="data.item.thumb_url">
   </v-list-item-avatar>
   <v-list-item-content>
    <v-list-item-title v-html="data.item.full_name"></v-list-item-title>
    <v-list-item-subtitle v-html="data.item.city"></v-list-item-subtitle>
   </v-list-item-content>
  </template>
 </template>
</v-autocomplete>
question from:https://stackoverflow.com/questions/66054227/v-autocomplete-not-filtering-v-list-items

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...