Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

blazor - Use different layout in lazy loaded assembly

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:

enter image description here

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...