6. Views 폴더에 컨트롤러 이름인 ViewComponentDemo로 폴더를 생성하고 CopyrightDemo.cshtml이라는 이름으로 뷰 페이지를 작성한 후 다음과 같이 뷰 컴포넌트를 호출하는 코드를 작성한다. InvokeAsync 메서드가 비동기 메서드이므로 @await를 붙여서 호출해야 한다.
▼ /Views/ViewComponentDemo/CopyrightDemo.cshtml
@{
Layout = null;
}
<h3>Copyright 뷰 컴포넌트 호출</h3>@await Component.InvokeAsync(“Copyright”)