Skip to content

Commit

Permalink
Merge pull request #5564 from i7slegend/fix/style-for-submenuHeader
Browse files Browse the repository at this point in the history
fix(#5562): support style for submenuHeader in Menu
  • Loading branch information
tugcekucukoglu authored Apr 19, 2024
2 parents b157190 + 6a8ea18 commit 26d9769
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/lib/menu/Menu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
>
<template v-for="(item, i) of model" :key="label(item) + i.toString()">
<template v-if="item.items && visible(item) && !item.separator">
<li v-if="item.items" :id="id + '_' + i" :class="[cx('submenuHeader'), item.class]" role="none" v-bind="ptm('submenuHeader')">
<li v-if="item.items" :id="id + '_' + i" :class="[cx('submenuHeader'), item.class]" :style="item.style" role="none" v-bind="ptm('submenuHeader')">
<slot name="submenuheader" :item="item">{{ label(item) }}</slot>
</li>
<template v-for="(child, j) of item.items" :key="child.label + i + '_' + j">
Expand Down

0 comments on commit 26d9769

Please sign in to comment.