[Vuejs]-How to add z-index to vuetify checkbox?

0👍

In my case I add padding-left 8px to the checkbox component. May this help you.

<v-checkbox
  v-model="model"
  class="pl-2"
  :value="item"
  :label="item.name"
  :color="item.color"
></v-checkbox>

Leave a comment