Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

2 tygodni temu
123456789101112131415161718
  1. @using BlazorPages.Shared
  2. @using BlazorPages.Tools
  3. @using Microsoft.AspNetCore.Components.Routing
  4. <Router AppAssembly="@typeof(BlazorPages.App).Assembly">
  5. <Found Context="routeData">
  6. <RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
  7. <FocusOnNavigate RouteData="@routeData" Selector="h1" />
  8. </Found>
  9. <NotFound>
  10. <PageTitle>Not found</PageTitle>
  11. <LayoutView Layout="@typeof(MainLayout)">
  12. <p role="alert">Sorry, there's nothing at this address.</p>
  13. </LayoutView>
  14. </NotFound>
  15. </Router>