HKC_Blazor/MasaBlazorApp3/App.razor

16 lines
453 B
Plaintext
Raw 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)">
<p role="alert">Sorry, there's nothing at this address.</p>
</LayoutView>
</NotFound>
</Router>