Warnings or other content can be written in a browser console by using the Console.WriteLine(“content”) method in Blazor WebAssembly.
@code {
protected override void OnInitialized()
{
Console.WriteLine("Blazor is awesome!");
}
}
Warnings or other content can be written in a browser console by using the Console.WriteLine(“content”) method in Blazor WebAssembly.
@code {
protected override void OnInitialized()
{
Console.WriteLine("Blazor is awesome!");
}
}
Share with