Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Icon over the button of v-switch vuetify

I am using vuetify and I just wanna add an icon over the button of v-switch, I searched in slots and found nothing

<v-switch label="Dark mode" flat inset></v-switch>

I wanna do like this picture

enter image description here

like image 430
Merouane Boucenna Avatar asked Sep 18 '25 02:09

Merouane Boucenna


2 Answers

You can use v-checkbox, with off-icon and on-icon. As example:

<v-checkbox class="pt-3"
    v-model="$vuetify.theme.dark"
    color="purple"
    off-icon="mdi-theme-light-dark"
    on-icon="mdi-theme-light-dark"
  ></v-checkbox>

Reference at https://vuetifyjs.com/en/api/v-checkbox/#props

like image 187
PhiRequiem Avatar answered Sep 21 '25 13:09

PhiRequiem


far you can do is append-icon and/or prepend-icon props

you can check the detail at https://vuetifyjs.com/en/api/v-switch/#props

like image 20
Jamaluddin Rumi Avatar answered Sep 21 '25 14:09

Jamaluddin Rumi