千万别动原生wwwroot!
千万别动原生wwwroot!
千万别动原生wwwroot!
千万别卸Blazorise!
千万别卸Blazorise!
千万别卸Blazorise!
- 参照官网 新建Shared/MainLayout.razor
- 在Blazor项目根目录里新建文件App.razor内如如下
<Router AppAssembly="@typeof(App).Assembly">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
</Found>
<NotFound>
<LayoutView Layout="@typeof(MainLayout)">
<p>Sorry, there's nothing at this address.</p>
</LayoutView>
</NotFound>
</Router>
- 修改_Host.cshtml
删掉
@using Volo.Abp.AspNetCore.Components.Web.BasicTheme.Themes.Basic
因为这个namespace下面也有个MainLayout.razor,这个会作为默认Layout。
再删掉abp原有样式
<abp-style-bundle name="@BlazorBasicThemeBundles.Styles.Global" />