skip to Main Content

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

Vuetify validation using Model or Controller – PHP

I'm just trying to add validation in my vuetify form from my Model or Controller and make an alert. In my .vue file <v-row dense> <v-col cols="3"> <v-text-field dense outlined label="Employee Code" v-model="emp_code"></v-text-field> </v-col> <v-col cols="3"> <v-text-field dense outlined label="Employee…

VIEW QUESTION

How to make button to be visible whole time and not to work only on click? – Html

<v-card :style="{ textAlign: 'left' }" class="basic-card pa-6" :class="{ 'small-padding': !$vuetify.breakpoint.xl }" elevation="0" flat :height="windowHeight - 104 + 'px'" outlined align="start" justify="start"> <v-row class="mt-0"> <v-col cols="12" class="pt-0"> <v-tabs v-model="eventTabs" center-active class="mx-0" grow> <v-tab v-for="(tab, index) in eventAssets" :key="index" :class="{ 'mr-1': index…

VIEW QUESTION
Back To Top
Search