Examining the Routable Razor Components
Learn how to use and implement routable Razor components.
We'll cover the following...
The routable Razor components are in the Pages folder. There are three routable Razor components in the Demo project:
- The
Indexcomponent - The
Countercomponent - The
FetchDatacomponent
The Index component
The “Home” page of the Demo project uses the Index component that is defined in the Pages\Index.razor file:
Press + to interact
@page "/"<h1>Hello, world!</h1>Welcome to your new app.<SurveyPrompt Title="How is Blazor working for you?" />
The preceding code includes an @page directive that references the root of the web app and some markup. The markup includes a SurveyPrompt component.
The Counter component
The Counter component is more complex than the ...
Ask