Icon over the button of v-switch vuetify

Viewed 2876

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

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

Related