16 lines
		
	
	
		
			444 B
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			444 B
		
	
	
	
		
			Plaintext
		
	
	
	
@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">抱歉,找不到此页面。</p>
 | 
						|
        </LayoutView>
 | 
						|
    </NotFound>
 | 
						|
</Router>
 | 
						|
 | 
						|
 |