You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -197,12 +197,12 @@ Provides transition effects for **multiple** elements or components in a list.
197
197
}
198
198
```
199
199
200
-
-**Events**
200
+
-**이벤트**:
201
201
202
202
`<TransitionGroup>` emits the same events as `<Transition>`.
203
203
`<TransitionGroup>`는 `<Transition>`과 동일한 이벤트를 발생시킵니다.
204
204
205
-
-**Details**
205
+
-**세부 사항**:
206
206
207
207
By default, `<TransitionGroup>` doesn't render a wrapper DOM element, but one can be defined via the `tag` prop.
208
208
@@ -220,7 +220,7 @@ Provides transition effects for **multiple** elements or components in a list.
220
220
`<TransitionGroup>`은 CSS 변환을 통한 이동 트랜지션을 지원합니다. 업데이트 후 화면에서 자녀의 위치가 변경되면 이동 CSS 클래스가 적용됩니다(`name` 속성에서 자동 생성되거나 `move-class` 소품으로 구성됨). 움직이는 클래스가 적용될 때 CSS의 `transform` 속성이 "전환 가능"이면 [FLIP 기술](https://aerotwist.com/blog/flip-your- 애니메이션/).
221
221
222
222
223
-
-**Example**
223
+
-**예제**:
224
224
225
225
```vue-html
226
226
<TransitionGroup tag="ul" name="slide">
@@ -230,8 +230,7 @@ Provides transition effects for **multiple** elements or components in a list.
컴포넌트가 `<KeepAlive>` 내에서 토글되면 그에 따라 `activated` 및 `deactivated` 수명 주기 후크가 호출되어 호출되지 않는 `mounted` 및 `unmounted` 에 대한 대안을 제공합니다. 이는 `<KeepAlive>`의 직계 자식과 모든 하위 항목에 적용됩니다.
@@ -416,13 +413,13 @@ Used for orchestrating nested async dependencies in a component tree.
416
413
}
417
414
```
418
415
419
-
-**Events**
416
+
-**이벤트**:
420
417
421
418
-`@resolve`
422
419
-`@pending`
423
420
-`@fallback`
424
421
425
-
-**Details**
422
+
-**세부 사항**:
426
423
427
424
`<Suspense>` accepts two slots: the `#default` slot and the `#fallback` slot. It will display the content of the fallback slot while rendering the default slot in memory.
428
425
@@ -434,5 +431,4 @@ Used for orchestrating nested async dependencies in a component tree.
434
431
렌더링하는 동안 비동기 종속성([Async Components](/guide/components/async.html) 및 [`async setup()`](/guide/built-ins/suspense.html#async-setup)이 있는 컴포넌트)이 발생하는 경우 기본 슬롯이 있는 경우 기본 슬롯을 표시하기 전에 모든 문제가 해결될 때까지 기다립니다.
0 commit comments