I am using .NET 8 and created a Blazor application (WebAssembly) and placed the following markup and code in Home.razor:
<input @bind="Title" /><h2>Hello, @Title</h2>@code { private string Title { get; set; } = string.Empty;}And I don't see any changes when I write something in the input, why?
My code is almost the same like here:
https://www.learnblazor.com/data-binding
and here:
https://www.pragimtech.com/blog/blazor/blazor-two-way-data-binding-example/
Here is the film:https://imgur.com/a/QqRKS3D
The solution: create Blazor STANDALONE application
