I have a Blazor application. In my Index.html (wwwroot) I have the following body:
<body class="vertical-layout vertical-menu 2-columns fixed-navbar" data-open="click" data-menu="vertical-menu" data-col="2-columns">
<app>Loading...</app>
<div id="blazor-error-ui">
An unhandled error has occurred.
<a href="" class="reload">Reload</a>
<a class="dismiss">????</a>
</div>
<script src="_content/Microsoft.AspNetCore.Components.WebAssembly.Authentication/AuthenticationService.js"></script>
<script src="_framework/blazor.webassembly.js"></script>
<script src="js/app.js"></script>
</body>
</html>
If you note, my Body tag has a class decoration.
I have 3 Layouts that I will have to change the Body class to a different value, but because Body tag lives inside the index.html I can't find a way to do this.
Any advice?