15 lines
347 B
Plaintext
15 lines
347 B
Plaintext
@page "/RouterTest/WithParameters/Name/{firstName}/LastName/{lastName}"
|
|
@using BasicTestApp.RouterTest
|
|
@using Microsoft.AspNetCore.Blazor.Components
|
|
<div id="test-info">Your full name is @FirstName @LastName.</div>
|
|
<Links />
|
|
|
|
@functions
|
|
{
|
|
[Parameter]
|
|
string FirstName { get; set; }
|
|
|
|
[Parameter]
|
|
string LastName { get ; set; }
|
|
}
|