HKC_Blazor/MasaBlazorApp3/App.razor

16 lines
444 B
Plaintext
Raw Permalink Normal View History

2025-04-18 11:01:56 +08:00
@namespace MasaBlazorApp3
<Router AppAssembly="@typeof(App).Assembly">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
</Found>
<NotFound>
<LayoutView Layout="@typeof(MainLayout)">
2025-06-24 08:55:34 +08:00
<p role="alert">抱歉,找不到此页面。</p>
2025-04-18 11:01:56 +08:00
</LayoutView>
</NotFound>
</Router>