diff --git a/content/tutorial/01-svelte/05-events/02-inline-handlers/README.md b/content/tutorial/01-svelte/05-events/02-inline-handlers/README.md index b0aa0f9b..8604d006 100644 --- a/content/tutorial/01-svelte/05-events/02-inline-handlers/README.md +++ b/content/tutorial/01-svelte/05-events/02-inline-handlers/README.md @@ -1,8 +1,8 @@ --- -title: Inline handlers +title: 인라인 핸들러 --- -You can also declare event handlers inline: +이벤트 핸들러를 인라인으로 선언할 수도 있습니다. ```svelte /// file: App.svelte @@ -24,4 +24,4 @@ You can also declare event handlers inline: ``` -> In some frameworks you may see recommendations to avoid inline event handlers for performance reasons, particularly inside loops. That advice doesn't apply to Svelte — the compiler will always do the right thing, whichever form you choose. +> 일부 프레임워크에서는 성능상의 이유로, 특히 루프 내에서 인라인 이벤트 핸들러를 피하라는 권고를 볼 수 있습니다. 그 조언은 스벨트에는 적용되지 않습니다. 컴파일러는 선택한 방식에 관계없이 항상 올바른 작업을 수행합니다.