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: none !important;
box-shadow: none !important;
}
2
Answers
try to add a custom class to your v-select component
I assume you mean the thin black border on the bottom of the select.
In Vuetify 2, you have to override
.v-input__slot::before
:In Vuetify 3, you have to override
.v-field__outline::before
: