vue.js 如何在v菜单上设置类__v组合框的内容

ddrv8njm  于 2022-12-30  发布在  Vue.js
关注(0)|答案(1)|浏览(100)

我想制作3列下拉组合框
所以我想补充一点

{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(33%, auto));
}

对于由v组合框生成的v菜单__内容,如何设置v组合框的v菜单__内容的类?codepen

ttisahbt

ttisahbt1#

在菜单属性中使用contentClass:

:menu-props="{ contentClass: 'three-dropdown' }"

并添加样式:

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

相关问题