From ddabe4fbd595dba317d1dae6b2317e173506bade Mon Sep 17 00:00:00 2001 From: joshua1988 Date: Tue, 3 Oct 2023 21:37:29 +0900 Subject: [PATCH] add detail word --- docs/composition/event-emit.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/composition/event-emit.md b/docs/composition/event-emit.md index bc6be1946..5be4dea7f 100644 --- a/docs/composition/event-emit.md +++ b/docs/composition/event-emit.md @@ -24,7 +24,7 @@ export default { 위 코드는 하위 컴포넌트에서 상위 컴포넌트로 `change` 이벤트를 보내는 코드입니다. 이처럼 `$emit()` API를 이용하여 이벤트를 발생시킬 수 있습니다. -## setup()에서 이벤트 발생 +## setup()에서 컴포넌트 이벤트 발생시키기 이번엔 `setup()` 함수에서 이벤트를 발생시키는 방법을 알아보겠습니다.