14 lines
643 B
Plaintext
14 lines
643 B
Plaintext
@* WASM 기반(M3) 검증용 컴포넌트. 라우팅/렌더모드 전면 적용은 M4에서 처리한다. *@
|
|
@rendermode InteractiveWebAssembly
|
|
|
|
<MudPaper Class="pa-6 ma-4" Elevation="2">
|
|
<MudText Typo="Typo.h5" GutterBottom="true">WebAssembly 렌더 모드 점검</MudText>
|
|
<MudText Typo="Typo.body2" Class="mb-4">이 컴포넌트가 클릭에 반응하면 Interactive WebAssembly 기반이 정상 동작하는 것입니다.</MudText>
|
|
<MudButton Variant="Variant.Filled" Color="Color.Primary" OnClick="Increment">카운트: @count</MudButton>
|
|
</MudPaper>
|
|
|
|
@code {
|
|
private int count;
|
|
private void Increment() => count++;
|
|
}
|