ant-design-blazor/site/AntDesign.Docs/Shared/RazorBox.razor
2021-02-06 20:15:46 +08:00

23 lines
369 B
C#

@using AntDesign.Docs.Services
@inherits ComponentBase
@Component
@inject DemoService demoService;
@code {
[Parameter]
public DemoItem Demo { get; set; }
RenderFragment Component;
protected override async Task OnInitializedAsync()
{
await base.OnInitializedAsync();
Component = demoService.GetShowCase(Demo.Type);
}
}