14 lines
193 B
Plaintext
14 lines
193 B
Plaintext
@inject IJSRuntime JS
|
|
|
|
<h1>@Value</h1>
|
|
|
|
@code
|
|
{
|
|
[Parameter]
|
|
public string Value { get; set; }
|
|
|
|
protected override void OnInitialized()
|
|
{
|
|
JS.InvokeVoidAsync("setTitle", Value);
|
|
}
|
|
} |