ant-design-blazor/components/menu/MenuItemGroup.razor

21 lines
515 B
C#
Raw Normal View History

@namespace AntDesign
2020-03-11 14:00:18 +08:00
@inherits AntDomComponentBase
<li class="@(RootMenu.PrefixCls)-item-group" style="@Style" @key="Key">
<div class="@(RootMenu.PrefixCls)-item-group-title">
@if (Title.Value != null)
{
@if (Title.IsT0)
{
@Title.AsT0
}
else if (Title.IsT1)
{
@Title.AsT1
}
}
2020-03-11 14:00:18 +08:00
</div>
<ul class="@(RootMenu.PrefixCls)-item-group-list">
@ChildContent
</ul>
</li>