Skip to content

Commit 0902455

Browse files
01-svelte/05-events/06-dom-event-forwarding (#104)
1 parent 075f66f commit 0902455

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

content/tutorial/01-svelte/05-events/06-dom-event-forwarding/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
title: DOM event forwarding
2+
title: DOM 이벤트 전달(forwarding)
33
---
44

5-
Event forwarding works for DOM events too.
5+
이벤트 전달은 DOM 이벤트에도 작동합니다.
66

7-
We want to get notified of clicks on our `<BigRedButton>` — to do that, we just need to forward `click` events on the `<button>` element in `BigRedButton.svelte`:
7+
`<BigRedButton>`에서 클릭에 대한 알림을 받고 싶다면, `BigRedButton.svelte``<button>` 요소에서 `click` 이벤트를 전달하면 됩니다.
88

99
```svelte
1010
/// file: BigRedButton.svelte

content/tutorial/01-svelte/05-events/meta.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"title": "Events",
2+
"title": "이벤트",
33
"scope": {
44
"prefix": "/src/lib/",
55
"name": "src"

0 commit comments

Comments
 (0)