11 lines
176 B
Plaintext
11 lines
176 B
Plaintext
@inject IJSRuntime JS
|
|
|
|
@code {
|
|
[Parameter]
|
|
public string Value { get; set; }
|
|
|
|
protected override void OnInitialized()
|
|
{
|
|
JS.InvokeVoidAsync("setTitle", Value);
|
|
}
|
|
} |