Add details on component route parameters

This commit is contained in:
Marcello 2021-11-28 18:08:10 +01:00 committed by GitHub
parent 8eb16c3262
commit 2beb560067
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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