2021-01-08 16:26:19 +01:00

11 lines
176 B
Plaintext

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