mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-05 18:36:41 +00:00
Add details on component route parameters
This commit is contained in:
parent
8eb16c3262
commit
2beb560067
1 changed files with 3 additions and 1 deletions
|
@ -225,7 +225,9 @@ Project
|
|||
[Blazor Components](https://docs.microsoft.com/en-us/aspnet/core/blazor/components/)
|
||||
|
||||
```cs
|
||||
@page "/route/{RouteParameter?}" // make component accessible from a URL (optional)
|
||||
@page "/route/{RouteParameter}" // make component accessible from a URL
|
||||
@page "/route/{RouteParameter?}" // specify route parameter as optional
|
||||
@page "/route/{RouteParameter:<type>}" // specify route parameter type
|
||||
|
||||
@namespace <Namespace> // set the component namespace
|
||||
@using <Namespace> // using statement
|
||||
|
|
Loading…
Add table
Reference in a new issue