blazor-components
Installation
SKILL.md
Blazor Component Model
Render Modes (.NET 10 Blazor Web App)
The unified Blazor Web App model supports four render modes:
Static Server-Side Rendering (SSR)
- Default mode, no
@rendermodedirective - HTML rendered on server, sent as static HTML
- No interactivity (no event handlers)
- Best for: content pages, SEO-critical pages, fast initial load
@page "/about"
@attribute [StreamRendering] @* Enable streaming for async data *@
<h1>About Us</h1>
<p>@_content</p>