25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

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