Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

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

razor - Stylesheets and scripts when using nested Blazor components

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

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

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...