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 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…