Как добавить @ref к компонентам Blazor внутри цикла?
@for (int i = 0; i < 10; i++)
{
// I want to add this component to the list
}
@code
{
List components = new List();
}
Подробнее здесь: https://stackoverflow.com/questions/600 ... -in-a-loop