[Blazor] @ref
<!-- @ref == ChildComponent 가 가진 기능들에 직접접근 가능하게 해줌 여기에 써준 이름과-->
<ChildComponent @ref="childComp"
OnClickBtnMethod="ShowMessage" Title="this title is passed as parameter from PArent Component">
<div class="row">
<button @onclick="()=>childComp.ShowToastrSuccess()">ShowChildToastr</button>
</div>
@code{
// 상단 ref 에 먹인 이름이 같아야함
private ChildComponent childComp;
}
child component 에 있는 기능들을 parent 컴포넌트에서 바로 접근 가능하게 해주는 기능이다.
댓글
댓글 쓰기