Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

App.razor 465 B

2 veckor sedan
123456789101112
  1. <Router AppAssembly="@typeof(App).Assembly">
  2. <Found Context="routeData">
  3. <RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
  4. <FocusOnNavigate RouteData="@routeData" Selector="h1" />
  5. </Found>
  6. <NotFound>
  7. <PageTitle>Not found</PageTitle>
  8. <LayoutView Layout="@typeof(MainLayout)">
  9. <p role="alert">Sorry, there's nothing at this address.</p>
  10. </LayoutView>
  11. </NotFound>
  12. </Router>