I separated admin section of my Blazor WA app to own project. It's lazy loaded when user access the /admin
page.
I followed this tutorial and everything works just fine. But when I want to change layout of my admin section, app just freezes (like the browser, no errors in console, no errors while debuging, nothing).
Structure of my Admin
project:
This is what I have in _Imports.razor
:
@layout AdminLayout
@using Admin.Shared
If I specify the layout for on page only, it works:
@page "/admin"
@layout AdminLayout
Here is the sample project.
What is wrong here? How can I have different layout in another project?
EDIT
After some investigation, it's clear that layout change has to be in _Imports.razor
file, that is located in Page folder. It works that way!
question from:
https://stackoverflow.com/questions/65927825/use-different-layout-in-lazy-loaded-assembly 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…