Skip to content

Commit eb6d107

Browse files
committed
translate pipeline/deactivate.md
1 parent 1856fad commit eb6d107

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

docs/ja/pipeline/deactivate.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
# `deactivate(transition) [-> Promise]`
22

3-
Called on a leaving component the activation phase when it is about to be deactivated and removed.
3+
非活性されて削除した時、活性化フェーズのコンポーネントから離れるときに呼び出されます。
44

5-
### Arguments
5+
### 引数
66

77
- [`transition {Transition}`](hooks.md#transition-object)
88

9-
Call `transition.next()` to resolve the hook. Note calling `transition.abort()` here will not take the app back to the previous route because the transition has already been validated.
9+
フックを解決するために `transition.next()` を呼び出します。ここで `transition.abort()` を呼び出すと、トランジションは既に検証されているため、アプリケーションは以前のルートへ戻りません。
1010

11-
### Return Value
11+
### 戻り値
1212

13-
- Optionally return a Promise.
13+
- 任意で Promise を返します。
1414
- `resolve` -> `transition.next()`
1515
- `reject(reason)` -> `transition.abort(reason)`
1616

17-
### Details
17+
### 詳細
1818

19-
This hook is called from bottom-up. A parent view component's `deactivate` only gets called when its child's `deactivate` has resolved.
19+
このフックはボトムアップから呼ばれます。子の `deactivate` が解決された時にのみ、親 の view コンポーネントの `deactivate` が呼び出されます。
2020

21-
New components' `activate` hooks will only get called when all current components' `deactivate` hooks have been resolved.
21+
新しいコンポーネントの `activate` フックは、現状のコンポーネントの `deactivate` フック全て解決された時にのみ、呼び出されます。

0 commit comments

Comments
 (0)