mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 05:27:37 +08:00
29 lines
635 B
C#
29 lines
635 B
C#
<ConventionRouter AppAssembly="@typeof(MainLayout).Assembly">
|
|
<Found Context="routeData">
|
|
<RouteView RouteData="routeData" DefaultLayout="@typeof(MainLayout)" />
|
|
</Found>
|
|
<NotFound>
|
|
<LayoutView Layout="@typeof(MainLayout)">
|
|
@if (Result != null)
|
|
{
|
|
@Result
|
|
}
|
|
</LayoutView>
|
|
</NotFound>
|
|
</ConventionRouter>
|
|
|
|
<AntContainer />
|
|
|
|
@code{
|
|
|
|
RenderFragment Result;
|
|
|
|
protected override async Task OnInitializedAsync()
|
|
{
|
|
await base.OnInitializedAsync();
|
|
await Task.Delay(2000);
|
|
|
|
Result = @<Result Status="404"/>;
|
|
}
|
|
|
|
} |