[Vuejs]-How can i set vuetifty 3 v-select menu checbox left and right padding?

0👍

To keep the menu open for debugging-

Use the menu-props of v-select which passes props through to the v-menu component and set the model-value prop of v-menu to true which will always keep the menu open.

<v-select 
  multiple 
  :items="items" 
  :menu-props="{ modelValue: true }"
>
</v-select>

To set the padding of the list items’ label

You can modify the class .v-list-item-title.

.v-list-item-title {
  padding-left: 10px !important;
}

You can debug more as per your requirements.

Leave a comment