如何在 v-combobox 的 v-menu__content 上设置类

hon*_*h93 4 vue.js vuetify.js

我想制作 3 列下拉组合框

所以我想添加

{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(33%, auto));
}
Run Code Online (Sandbox Code Playgroud)

对于由 v-combobox 制作的 v-menu__content 如何设置 v-combobox 的 v-menu__content 类? 代码笔

Moh*_*efi 6

在菜单属性中使用 contentClass:

:menu-props="{ contentClass: 'three-dropdown' }"
Run Code Online (Sandbox Code Playgroud)

并添加样式:

.three-dropdown .v-list {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(33%, auto));
}
Run Code Online (Sandbox Code Playgroud)