ant-design-blazor/src/AntBlazor/Components/AntLayout/AntLayoutHeader.razor

18 lines
383 B
Plaintext
Raw Normal View History

2019-12-08 00:51:07 +08:00
@namespace AntBlazor
@inherits AntDomComponentBase
2019-12-09 00:25:22 +08:00
<nz-header class="@ClassMapper.Class" @ref="Ref" style="@Style" @attributes="Attributes" Id="@Id">
2019-12-08 00:51:07 +08:00
@ChildContent
2019-12-09 00:25:22 +08:00
</nz-header>
2019-12-08 00:51:07 +08:00
@code {
[Parameter]
public RenderFragment ChildContent { get; set; }
public AntLayoutHeader()
{
2019-12-09 00:25:22 +08:00
ClassMapper.Add("ant-layout-header")
.Add("nz-header");
2019-12-08 00:51:07 +08:00
}
}