<Router AppAssembly="@typeof(BlazorSharedDemo.ServerApp.App).Assembly">
    <Found Context="routeData">
        <RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
        <FocusOnNavigate RouteData="@routeData" Selector="h1" />
    </Found>
    <NotFound>
        <PageTitle>Not found</PageTitle>
        <LayoutView Layout="@typeof(MainLayout)">
            <p role="alert">抱歉,此路由地址不存在!</p>
        </LayoutView>
    </NotFound>
</Router>
@{
     
}