I'm new to Blazor and I'm currently designing a Blazor Server App with Bootstrap. My _host.cshtml
file looks something like this:
<head>
<link rel="stylesheet" href="~/plugins/summernote/summernote-bs4.min.css">
</head>
<body class="hold-transition sidebar-mini layout-fixed">
<component type="typeof(App)" render-mode="ServerPrerendered" />
<script src="~/plugins/jquery/jquery.min.js"></script>
</body>
I kept the MainLayout.razor
very simple so I have:
@inherits LayoutComponentBase
<div class="wrapper">
<NavMenu/>
@Body
<Footer/>
<ControlSidebar/>
</div>
@code { }
And then other components that will be rendered in @Body
. Will I be able to use the stylesheets and scripts I defined above within my components (in with further nesting)?
question from:
https://stackoverflow.com/questions/65871828/stylesheets-and-scripts-when-using-nested-blazor-components 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…