blazor Component kullanımı

Component kullanımı (Partial View gibi)

ChildComponent.razor

<h3>@Title</h3>

@code {
    [Parameter]
    public string Title { get; set; }
}

 

Kullanım:

<ChildComponent Title="Merhaba" />
 


Tarih: 2026.04.24