2020-05-29 00:33:49 +08:00
|
|
|
@namespace AntDesign
|
2019-12-09 00:25:22 +08:00
|
|
|
@inherits AntDomComponentBase
|
|
|
|
|
2020-04-23 17:13:56 +08:00
|
|
|
<main class="@ClassMapper.Class" @ref="Ref" style="@Style" id="@Id">
|
2019-12-09 00:25:22 +08:00
|
|
|
@ChildContent
|
2020-03-12 14:34:01 +08:00
|
|
|
</main>
|
2020-05-22 00:05:26 +08:00
|
|
|
|
2019-12-09 00:25:22 +08:00
|
|
|
@code {
|
|
|
|
[Parameter]
|
|
|
|
public RenderFragment ChildContent { get; set; }
|
|
|
|
|
2020-05-22 00:05:26 +08:00
|
|
|
protected override void OnInitialized()
|
2019-12-09 00:25:22 +08:00
|
|
|
{
|
|
|
|
ClassMapper.Add("ant-layout-content");
|
2020-05-22 00:05:26 +08:00
|
|
|
|
|
|
|
base.OnInitialized();
|
2019-12-09 00:25:22 +08:00
|
|
|
}
|
2020-05-22 00:05:26 +08:00
|
|
|
|
2020-04-23 17:13:56 +08:00
|
|
|
}
|