@page "/RouteParameter/{text?}"

Blazor is @Text!

@code { [Parameter] public string? Text { get; set; } protected override void OnInitialized() { Text = Text ?? "fantastic"; } }