@inject IJSRuntime JSRuntime @code { [Parameter] public string Value { get; set; } bool Clicked { get; set; } = false; private async Task CopyTextToClipboard() { if (Value is null) return; await JSRuntime.InvokeVoidAsync("clipboardCopy.copyText", Value.ToString()); Clicked = true; } }