Open
Description
Is this compatible with Blazor updating the DOM? Wouldn't that override all changes?
For example:
@page "/"
@inject BlazorQueryDOM DOM
<h1>@TestVal</h1>
@code {
string TestVal = "TestA";
protected override async Task OnAfterRenderAsync()
{
await DOM.Select("h1").Text("TestB");
TestVal = "TestC"
}
}
What will actually be displayed? (I'm not at home and I'm really interested into this, maybe you can answer, else I'll try it out later)