12 lines
392 B
Plaintext
12 lines
392 B
Plaintext
@using Microsoft.AspNetCore.Components.Routing
|
|
@using ZB.MOM.WW.OtOpcUa.Admin.Components.Layout
|
|
|
|
<Router AppAssembly="@typeof(Program).Assembly">
|
|
<Found Context="routeData">
|
|
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)"/>
|
|
</Found>
|
|
<NotFound>
|
|
<LayoutView Layout="@typeof(MainLayout)"><p>Not found.</p></LayoutView>
|
|
</NotFound>
|
|
</Router>
|