skip to Main Content

Vuetify v-autocomplete selects an item different from the one clicked on by the user – Javascript

Here is a codepen: https://codepen.io/spierepf/pen/ExdvXYY?editors=101 <div id="app"> <v-app id="inspire"> <v-card> <v-container fluid> <v-row align="center" > <v-col cols="12"> <v-autocomplete :items='items' :search-input.sync='search' v-model="selectedItem" @change="$emit('itemSelected', selectedItem)" ></v-autocomplete> </v-col> <v-col cols="12"> </v-col> <v-col cols="12"> </v-col> </v-row> </v-container> </v-card> </v-app> </div> function bggId(itemElement) { return…

VIEW QUESTION

How to remove underlined in vuetify v-select – CSS

I have a component for v-select, for example like this <v-container> <v-row> <v-col> <v-select class="no-border" variant="underlined" label="Select" :items="['California', 'Colorado', 'Florida', 'Georgia', 'Texas', 'Wyoming']" ></v-select> </v-col> </v-row> </v-container> And i try to remove using css like this .v-input--underlined .v-input__control { border:…

VIEW QUESTION
Back To Top
Search