13 lines
216 B
Plaintext
13 lines
216 B
Plaintext
|
|
@page "/RouteParameter/{text?}"
|
||
|
|
<h3>Blazor is @Text!</h3>
|
||
|
|
|
||
|
|
@code {
|
||
|
|
[Parameter]
|
||
|
|
public string? Text { get; set; }
|
||
|
|
|
||
|
|
protected override void OnParametersSet()
|
||
|
|
{
|
||
|
|
Text = Text ?? "test";
|
||
|
|
}
|
||
|
|
}
|