mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-14 17:01:18 +08:00
17 lines
233 B
C#
17 lines
233 B
C#
|
@namespace AntDesign
|
|||
|
@inherits AntDomComponentBase
|
|||
|
|
|||
|
<div class="ant-select-item ant-select-item-group">
|
|||
|
@if (LabelFragment == null)
|
|||
|
{
|
|||
|
@Label
|
|||
|
}
|
|||
|
else
|
|||
|
{
|
|||
|
@LabelFragment
|
|||
|
}
|
|||
|
</div>
|
|||
|
@ChildContent
|
|||
|
|
|||
|
|