mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 21:47:38 +08:00
21 lines
515 B
C#
21 lines
515 B
C#
@namespace AntDesign
|
|
@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
|
|
}
|
|
}
|
|
</div>
|
|
<ul class="@(RootMenu.PrefixCls)-item-group-list">
|
|
@ChildContent
|
|
</ul>
|
|
</li> |