-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Labels
bugSomething isn't workingSomething isn't working
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)
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working