[Vuejs]-Combobox in vuetify does not work like input

0👍

add ":" for the before items. such as,

<v-combobox 

                dense 
                v-model="watcher"
                
                :items="ItemsArray"
                :search-input.sync="search"
                item-text="ItemsArray.item_name" 
                label="item name" 
                
                />

<v-btn @click="Search">Search</v-btn>

Leave a comment