From 2f6974d6696db662caef33362fdbbbc70e4943cc Mon Sep 17 00:00:00 2001 From: Jun Shindo <46585162+jay-es@users.noreply.github.com> Date: Sun, 25 Sep 2022 16:06:20 +0900 Subject: [PATCH 1/4] =?UTF-8?q?=E3=80=8CAPI=20>=20Options=20API=20>=20Opti?= =?UTF-8?q?ons:=20Lifecycle=E3=80=8D=E3=81=AE=E7=BF=BB=E8=A8=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vitepress/config.ts | 2 +- src/api/options-lifecycle.md | 194 +++++++++++++++++------------------ 2 files changed, 98 insertions(+), 98 deletions(-) diff --git a/.vitepress/config.ts b/.vitepress/config.ts index 810e8537a..4ea05a346 100644 --- a/.vitepress/config.ts +++ b/.vitepress/config.ts @@ -376,7 +376,7 @@ export const sidebar = { { text: 'Options: State', link: '/api/options-state' }, { text: 'Options: Rendering', link: '/api/options-rendering' }, { - text: 'Options: Lifecycle', + text: 'Options: ライフサイクル', link: '/api/options-lifecycle' }, { diff --git a/src/api/options-lifecycle.md b/src/api/options-lifecycle.md index 4760381cb..e8bd75984 100644 --- a/src/api/options-lifecycle.md +++ b/src/api/options-lifecycle.md @@ -1,14 +1,14 @@ -# Options: Lifecycle +# Options: ライフサイクル -:::info See also -For shared usage of lifecycle hooks, see [Guide - Lifecycle Hooks](/guide/essentials/lifecycle.html) +:::info 参照 +ライフサイクルフックの共通の使い方については、[ガイド - ライフサイクルフック](/guide/essentials/lifecycle.html) を参照してください ::: ## beforeCreate -Called when the instance is initialized. +インスタンスが初期化されるときに呼び出されます。 -- **Type** +- **型** ```ts interface ComponentOptions { @@ -16,17 +16,17 @@ Called when the instance is initialized. } ``` -- **Details** +- **詳細** - Called immediately when the instance is initialized, after props resolution, before processing other options such as `data()` or `computed`. + インスタンスが初期化されたときや、props を解決した後、`data()` や `computed` などの他のオプションを処理する前に直ちに呼び出されます。 - Note that the `setup()` hook of Composition API is called before any Options API hooks, even `beforeCreate()`. + Composition API の `setup()` フックは、`beforeCreate()` を含めた Options API のどんなフックよりも先に呼び出されることに注意してください。 ## created -Called after the instance has finished processing all state-related options. +インスタンスがすべての状態関連オプションの処理を終了した後に呼び出されます。 -- **Type** +- **型** ```ts interface ComponentOptions { @@ -34,15 +34,15 @@ Called after the instance has finished processing all state-related options. } ``` -- **Details** +- **詳細** - When this hooks is called, the following have been set up: reactive data, computed properties, methods, and watchers. However, the mounting phase has not been started, and the `$el` property will not be available yet. + このフックが呼ばれたとき、リアクティブなデータ、算出プロパティ、メソッド、ウォッチャーがセットアップされています。しかし、マウントフェーズは開始されていないので、`$el` プロパティはまだ利用できません。 ## beforeMount -Called right before the component is to be mounted. +コンポーネントがマウントされる直前に呼び出されます。 -- **Type** +- **型** ```ts interface ComponentOptions { @@ -50,17 +50,17 @@ Called right before the component is to be mounted. } ``` -- **Details** +- **詳細** - When this hook is called, the component has finished setting up its reactive state, but no DOM nodes have been created yet. It is about to execute its DOM render effect for the first time. + このフックが呼ばれたとき、コンポーネントはリアクティブな状態のセットアップを終えていますが、DOM ノードはまだ作成されていません。コンポーネントが初めて DOM レンダー効果を実行しようとしているところです。 - **This hook is not called during server-side rendering.** + **このフックはサーバーサイドレンダリング時には呼び出されません。** ## mounted -Called after the component has been mounted. +コンポーネントがマウントされた後に呼び出されます。 -- **Type** +- **型** ```ts interface ComponentOptions { @@ -68,23 +68,23 @@ Called after the component has been mounted. } ``` -- **Details** +- **詳細** - A component is considered mounted after: + コンポーネントがマウントされたとみなされるのは次の場合です: - - All of its synchronous child components have been mounted (does not include async components or components inside `` trees). + - すべての同期的な子コンポーネントがマウントされた(非同期コンポーネントや `` ツリー内のコンポーネントは含まれません)。 - - Its own DOM tree has been created and inserted into the parent container. Note it only guarantees that the component's DOM tree is in-document if the application's root container is also in-document. + - そのコンポーネント自身の DOM ツリーが作成され、親コンテナーに挿入された。アプリケーションのルートコンテナが document 内にある場合のみ、そのコンポーネントの DOM ツリーも document 内にあることを保証することに注意してください。 - This hook is typically used for performing side effects that need access to the component's rendered DOM, or for limiting DOM-related code to the client in a [server-rendered application](/guide/scaling-up/ssr.html). + このフックは、通常、コンポーネントのレンダリングされた DOM にアクセスする必要がある副作用を実行する場合や、[サーバーレンダリングされるアプリケーション](/guide/scaling-up/ssr.html)において DOM 関連のコードをクライアントに限定する場合に使用されます。 - **This hook is not called during server-side rendering.** + **このフックはサーバーサイドレンダリング時には呼び出されません。** ## beforeUpdate -Called right before the component is about to update its DOM tree due to a reactive state change. +コンポーネントがリアクティブな状態変更により DOM ツリーを更新しようとする直前に呼び出されます。 -- **Type** +- **型** ```ts interface ComponentOptions { @@ -92,17 +92,17 @@ Called right before the component is about to update its DOM tree due to a react } ``` -- **Details** +- **詳細** - This hook can be used to access the DOM state before Vue updates the DOM. It is also safe to modify component state inside this hook. + このフックは、Vue が DOM を更新する前に DOM の状態にアクセスするために使用できます。このフックの内部でコンポーネントの状態を変更することも安全です。 - **This hook is not called during server-side rendering.** + **このフックはサーバーサイドレンダリング時には呼び出されません。** ## updated -Called after the component has updated its DOM tree due to a reactive state change. +コンポーネントがリアクティブな状態変更によって DOM ツリーを更新した後に呼び出されます。 -- **Type** +- **型** ```ts interface ComponentOptions { @@ -110,23 +110,23 @@ Called after the component has updated its DOM tree due to a reactive state chan } ``` -- **Details** +- **詳細** - A parent component's updated hook is called after that of its child components. + 親コンポーネントの更新フックは、子コンポーネントの更新フックの後に呼び出されます。 - This hook is called after any DOM update of the component, which can be caused by different state changes. If you need to access the updated DOM after a specific state change, use [nextTick()](/api/general.html#nexttick) instead. + このフックは、様々な状態変更によるコンポーネントの DOM 更新の後に呼び出されます。もし、特定の状態変更の後に更新された DOM へアクセスする必要がある場合は、代わりに [nextTick()](/api/general.html#nexttick) を使用してください。 - **This hook is not called during server-side rendering.** + **このフックはサーバーサイドレンダリング時には呼び出されません。** :::warning - Do not mutate component state in the updated hook - this will likely lead to an infinite update loop! + 更新フックでコンポーネントの状態を変更しないでください - 無限更新ループになる可能性があります! ::: ## beforeUnmount -Called right before a component instance is to be unmounted. +コンポーネントインスタンスがアンマウントされる直前に呼び出されます。 -- **Type** +- **型** ```ts interface ComponentOptions { @@ -134,17 +134,17 @@ Called right before a component instance is to be unmounted. } ``` -- **Details** +- **詳細** - When this hook is called, the component instance is still fully functional. + このフックが呼ばれたとき、コンポーネントインスタンスはまだ完全に機能しています。 - **This hook is not called during server-side rendering.** + **このフックはサーバーサイドレンダリング時には呼び出されません。** ## unmounted -Called after the component has been unmounted. +コンポーネントがアンマウントされた後に呼び出されます。 -- **Type** +- **型** ```ts interface ComponentOptions { @@ -152,23 +152,23 @@ Called after the component has been unmounted. } ``` -- **Details** +- **詳細** - A component is considered unmounted after: + コンポーネントがアンマウントされたとみなされるのは次の場合です: - - All of its child components have been unmounted. + - 子コンポーネントがすべてアンマウントされた。 - - All of its associated reactive effects (render effect and computed / watchers created during `setup()`) have been stopped. + - 関連するすべてのリアクティブエフェクト(レンダーエフェクトと `setup() ` で作成された computed とウォッチャー)が停止された。 - Use this hook to clean up manually created side effects such as timers, DOM event listeners or server connections. + タイマー、DOM イベントリスナー、サーバー接続など、手動で作成した副作用をクリーンアップするためにこのフックを使用します。 - **This hook is not called during server-side rendering.** + **このフックはサーバーサイドレンダリング時には呼び出されません。** ## errorCaptured -Called when an error propagating from a descendent component has been captured. +子孫コンポーネントから伝搬するエラーをキャプチャーしたときに呼び出されます。 -- **Type** +- **型** ```ts interface ComponentOptions { @@ -181,41 +181,41 @@ Called when an error propagating from a descendent component has been captured. } ``` -- **Details** +- **詳細** - Errors can be captured from the following sources: + エラーは以下のソースからキャプチャーすることがあります: - - Component renders - - Event handlers - - Lifecycle hooks - - `setup()` function - - Watchers - - Custom directive hooks - - Transition hooks + - コンポーネントのレンダリング + - イベント ハンドラー + - ライフサイクル フック + - `setup()` 関数 + - ウォッチャー + - カスタムディレクティブフック + - トランジションフック - The hook receives three arguments: the error, the component instance that triggered the error, and an information string specifying the error source type. + このフックは、エラー、エラーを引き起こしたコンポーネントのインスタンス、およびエラーソースタイプを指定する情報文字列の 3 つの引数を受け取ります。 - You can modify component state in `errorCaptured()` to display an error state to the user. However, it is important that the error state should not render the original content that caused the error; otherwise the component will be thrown into an infinite render loop. + エラー状態をユーザーに表示するため、`errorCaptured()` でコンポーネントの状態を変更できます。しかし、エラー状態はエラーの原因となった元のコンテンツをレンダリングしないことが重要です。さもなければ、コンポーネントは無限レンダリングループに放り込まれるでしょう。 - The hook can return `false` to stop the error from propagating further. See error propagation details below. + このフックは `false` を返すことで、エラーがそれ以上伝搬しないようにできます。エラーの伝播の詳細については、以下を参照してください。 - **Error Propagation Rules** + **エラー伝搬のルール** - - By default, all errors are still sent to the application-level [`app.config.errorHandler`](/api/application.html#app-config-errorhandler) if it is defined, so that these errors can still be reported to an analytics service in a single place. + - アプリケーションレベルの [`app.config.errorHandler`](/api/application.html#app-config-errorhandler) が定義されていれば、デフォルトでそちらにもすべてのエラーが送られるので、これらのエラーを 1 箇所でアナリティクスサービスに報告できます。 - - If multiple `errorCaptured` hooks exist on a component's inheritance chain or parent chain, all of them will be invoked on the same error, in the order of bottom to top. This is similar to the bubbling mechanism of native DOM events. + - コンポーネントの継承チェーンや親チェーンに複数の `errorCaptured` フックが存在する場合、同じエラーに対して、下から上への順番ですべてのフックが呼び出されます。これはネイティブ DOM イベントのバブリングの仕組みに似ています。 - - If the `errorCaptured` hook itself throws an error, both this error and the original captured error are sent to `app.config.errorHandler`. + - もし `errorCaptured` フック自体がエラーをスローした場合、そのエラーと元のキャプチャーされたエラーの両方が `app.config.errorHandler` に送られます。 - - An `errorCaptured` hook can return `false` to prevent the error from propagating further. This is essentially saying "this error has been handled and should be ignored." It will prevent any additional `errorCaptured` hooks or `app.config.errorHandler` from being invoked for this error. + - `errrorCaptured` フックで `false` を返すと、エラーがそれ以上伝搬しないようにできます。これは要するに「このエラーは処理済みなので無視してください」ということです。このエラーに対して、追加の `errorCaptured` フックや `app.config.errorHandler` が呼び出されるのを防ぎます。 ## renderTracked -Called when a reactive dependency has been tracked by the component's render effect. +コンポーネントのレンダーエフェクトによってリアクティブな依存関係が追跡されたときに呼び出されます。 -**This hook is development-mode-only and not called during server-side rendering.** +**このフックは開発モード専用です。また、サーバーサイドレンダリング時には呼び出されません。** -- **Type** +- **型** ```ts interface ComponentOptions { @@ -230,15 +230,15 @@ Called when a reactive dependency has been tracked by the component's render eff } ``` -- **See also:** [Reactivity in Depth](/guide/extras/reactivity-in-depth.html) +- **参照:** [リアクティビティーの探求](/guide/extras/reactivity-in-depth.html) ## renderTriggered -Called when a reactive dependency triggers the component's render effect to be re-run. +リアクティブな依存関係がコンポーネントのレンダーエフェクトの再実行をトリガーしたときに呼び出されます。 -**This hook is development-mode-only and not called during server-side rendering.** +**このフックは開発モード専用です。また、サーバーサイドレンダリング時には呼び出されません。** -- **Type** +- **型** ```ts interface ComponentOptions { @@ -256,15 +256,15 @@ Called when a reactive dependency triggers the component's render effect to be r } ``` -- **See also:** [Reactivity in Depth](/guide/extras/reactivity-in-depth.html) +- **参照:** [リアクティビティーの探求](/guide/extras/reactivity-in-depth.html) ## activated -Called after the component instance is inserted into the DOM as part of a tree cached by [``](/api/built-in-components.html#keepalive). +コンポーネントインスタンスが [``](/api/built-in-components.html#keepalive) によってキャッシュされたツリーの一部として DOM に挿入された後に呼び出されます。 -**This hook is not called during server-side rendering.** +**このフックはサーバーサイドレンダリング時には呼び出されません。** -- **Type** +- **型** ```ts interface ComponentOptions { @@ -272,15 +272,15 @@ Called after the component instance is inserted into the DOM as part of a tree c } ``` -- **See also:** [Guide - Lifecycle of Cached Instance](/guide/built-ins/keep-alive.html#lifecycle-of-cached-instance) +- **参照:** [ガイド - キャッシュされたインスタンスのライフサイクル](/guide/built-ins/keep-alive.html#キャッシュされたインスタンスのライフサイクル) ## deactivated -Called after the component instance is removed from the DOM as part of a tree cached by [``](/api/built-in-components.html#keepalive). +コンポーネントインスタンスが [``](/api/built-in-components.html#keepalive) によってキャッシュされたツリーの一部として DOM から削除された後に呼び出されます。 -**This hook is not called during server-side rendering.** +**このフックはサーバーサイドレンダリング時には呼び出されません。** -- **Type** +- **型** ```ts interface ComponentOptions { @@ -288,13 +288,13 @@ Called after the component instance is removed from the DOM as part of a tree ca } ``` -- **See also:** [Guide - Lifecycle of Cached Instance](/guide/built-ins/keep-alive.html#lifecycle-of-cached-instance) +- **参照:** [ガイド - キャッシュされたインスタンスのライフサイクル](/guide/built-ins/keep-alive.html#キャッシュされたインスタンスのライフサイクル) ## serverPrefetch -Async function to be resolved before the component instance is to be rendered on the server. +コンポーネントインスタンスがサーバーでレンダリングされる前に解決される非同期関数。 -- **Type** +- **型** ```ts interface ComponentOptions { @@ -302,13 +302,13 @@ Async function to be resolved before the component instance is to be rendered on } ``` -- **Details** +- **詳細** - If the hook returns a Promise, the server renderer will wait until the Promise is resolved before rendering the component. + フックが Promise を返す場合、サーバーレンダラーはコンポーネントをレンダリングする前に Promise が解決されるまで待機します。 - This hook is only called during server-side rendering can be used to perform server-only data fetching. + このフックはサーバーサイドレンダリング時にのみ呼び出され、サーバーのみのデータ取得をするために使用できます。 -- **Example** +- **例** ```js export default { @@ -318,19 +318,19 @@ Async function to be resolved before the component instance is to be rendered on } }, async serverPrefetch() { - // component is rendered as part of the initial request - // pre-fetch data on server as it is faster than on the client + // コンポーネントは初期リクエストの一部としてレンダリングされます + // クライアントよりも高速なので、サーバーでデータをプリフェッチします this.data = await fetchOnServer(/* ... */) }, async mounted() { if (!this.data) { - // if data is null on mount, it means the component - // is dynamically rendered on the client. Perform a - // client-side fetch instead. + // マウント時に data が null の場合、コンポーネントは + // クライアントで動的にレンダリングされることを意味します。 + // 代わりにクライアントサイドフェッチを実行します。 this.data = await fetchOnClient(/* ... */) } } } ``` -- **See also:** [Server-Side Rendering](/guide/scaling-up/ssr.html) +- **参照:** [サーバーサイドレンダリング](/guide/scaling-up/ssr.html) From c7a9090d32645cd9033a710d9c7d72736bc1c285 Mon Sep 17 00:00:00 2001 From: Jun Shindo <46585162+jay-es@users.noreply.github.com> Date: Sun, 2 Oct 2022 17:58:27 +0900 Subject: [PATCH 2/4] =?UTF-8?q?=E4=BD=99=E5=88=86=E3=81=AA=E7=A9=BA?= =?UTF-8?q?=E7=99=BD=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/composition-api-lifecycle.md | 4 ++-- src/api/options-lifecycle.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/api/composition-api-lifecycle.md b/src/api/composition-api-lifecycle.md index 4af7e7db8..8ff300665 100644 --- a/src/api/composition-api-lifecycle.md +++ b/src/api/composition-api-lifecycle.md @@ -197,8 +197,8 @@ エラーは以下のソースからキャプチャーすることがあります: - コンポーネントのレンダリング - - イベント ハンドラー - - ライフサイクル フック + - イベントハンドラー + - ライフサイクルフック - `setup()` 関数 - ウォッチャー - カスタムディレクティブフック diff --git a/src/api/options-lifecycle.md b/src/api/options-lifecycle.md index e8bd75984..3c4b96bfa 100644 --- a/src/api/options-lifecycle.md +++ b/src/api/options-lifecycle.md @@ -186,8 +186,8 @@ エラーは以下のソースからキャプチャーすることがあります: - コンポーネントのレンダリング - - イベント ハンドラー - - ライフサイクル フック + - イベントハンドラー + - ライフサイクルフック - `setup()` 関数 - ウォッチャー - カスタムディレクティブフック From c520a12bc04504f07eb04c1973f548e4306d4ed2 Mon Sep 17 00:00:00 2001 From: Jun Shindo <46585162+jay-es@users.noreply.github.com> Date: Sun, 2 Oct 2022 20:01:54 +0900 Subject: [PATCH 3/4] =?UTF-8?q?=E3=80=8C=E6=99=82=E3=80=8D=E3=82=92?= =?UTF-8?q?=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/composition-api-lifecycle.md | 8 ++++---- src/api/options-lifecycle.md | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/api/composition-api-lifecycle.md b/src/api/composition-api-lifecycle.md index 8ff300665..e9893b46f 100644 --- a/src/api/composition-api-lifecycle.md +++ b/src/api/composition-api-lifecycle.md @@ -18,9 +18,9 @@ コンポーネントがマウントされたとみなされるのは次の場合です: - - すべての同期的な子コンポーネントがマウントされた(非同期コンポーネントや `` ツリー内のコンポーネントは含まれません)。 + - すべての同期的な子コンポーネントがマウントされた時(非同期コンポーネントや `` ツリー内のコンポーネントは含まれません)。 - - そのコンポーネント自身の DOM ツリーが作成され、親コンテナーに挿入された。アプリケーションのルートコンテナが document 内にある場合のみ、そのコンポーネントの DOM ツリーも document 内にあることを保証することに注意してください。 + - そのコンポーネント自身の DOM ツリーが作成され、親コンテナーに挿入された時。アプリケーションのルートコンテナが document 内にある場合のみ、そのコンポーネントの DOM ツリーも document 内にあることを保証することに注意してください。 このフックは、通常、コンポーネントのレンダリングされた DOM にアクセスする必要がある副作用を実行する場合や、[サーバーレンダリングされるアプリケーション](/guide/scaling-up/ssr.html)において DOM 関連のコードをクライアントに限定する場合に使用されます。 @@ -103,9 +103,9 @@ コンポーネントがアンマウントされたとみなされるのは次の場合です: - - 子コンポーネントがすべてアンマウントされた。 + - 子コンポーネントがすべてアンマウントされた時。 - - 関連するすべてのリアクティブエフェクト(レンダーエフェクトと `setup() ` で作成された computed とウォッチャー)が停止された。 + - 関連するすべてのリアクティブエフェクト(レンダーエフェクトと `setup() ` で作成された computed とウォッチャー)が停止された時。 タイマー、DOM イベントリスナー、サーバー接続など、手動で作成した副作用をクリーンアップするためにこのフックを使用します。 diff --git a/src/api/options-lifecycle.md b/src/api/options-lifecycle.md index 3c4b96bfa..24db37a74 100644 --- a/src/api/options-lifecycle.md +++ b/src/api/options-lifecycle.md @@ -72,9 +72,9 @@ コンポーネントがマウントされたとみなされるのは次の場合です: - - すべての同期的な子コンポーネントがマウントされた(非同期コンポーネントや `` ツリー内のコンポーネントは含まれません)。 + - すべての同期的な子コンポーネントがマウントされた時(非同期コンポーネントや `` ツリー内のコンポーネントは含まれません)。 - - そのコンポーネント自身の DOM ツリーが作成され、親コンテナーに挿入された。アプリケーションのルートコンテナが document 内にある場合のみ、そのコンポーネントの DOM ツリーも document 内にあることを保証することに注意してください。 + - そのコンポーネント自身の DOM ツリーが作成され、親コンテナーに挿入された時。アプリケーションのルートコンテナが document 内にある場合のみ、そのコンポーネントの DOM ツリーも document 内にあることを保証することに注意してください。 このフックは、通常、コンポーネントのレンダリングされた DOM にアクセスする必要がある副作用を実行する場合や、[サーバーレンダリングされるアプリケーション](/guide/scaling-up/ssr.html)において DOM 関連のコードをクライアントに限定する場合に使用されます。 @@ -156,9 +156,9 @@ コンポーネントがアンマウントされたとみなされるのは次の場合です: - - 子コンポーネントがすべてアンマウントされた。 + - 子コンポーネントがすべてアンマウントされた時。 - - 関連するすべてのリアクティブエフェクト(レンダーエフェクトと `setup() ` で作成された computed とウォッチャー)が停止された。 + - 関連するすべてのリアクティブエフェクト(レンダーエフェクトと `setup() ` で作成された computed とウォッチャー)が停止された時。 タイマー、DOM イベントリスナー、サーバー接続など、手動で作成した副作用をクリーンアップするためにこのフックを使用します。 From 9b3b6447e5a5a277191ad0d15aef76b876c8c237 Mon Sep 17 00:00:00 2001 From: Jun Shindo <46585162+jay-es@users.noreply.github.com> Date: Sun, 2 Oct 2022 20:11:57 +0900 Subject: [PATCH 4/4] =?UTF-8?q?=E3=83=9A=E3=83=BC=E3=82=B8=E3=82=BF?= =?UTF-8?q?=E3=82=A4=E3=83=88=E3=83=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vitepress/config.ts | 2 +- src/api/options-lifecycle.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.vitepress/config.ts b/.vitepress/config.ts index 4ea05a346..24a87ceb4 100644 --- a/.vitepress/config.ts +++ b/.vitepress/config.ts @@ -376,7 +376,7 @@ export const sidebar = { { text: 'Options: State', link: '/api/options-state' }, { text: 'Options: Rendering', link: '/api/options-rendering' }, { - text: 'Options: ライフサイクル', + text: 'オプション: ライフサイクル', link: '/api/options-lifecycle' }, { diff --git a/src/api/options-lifecycle.md b/src/api/options-lifecycle.md index 24db37a74..91edfe547 100644 --- a/src/api/options-lifecycle.md +++ b/src/api/options-lifecycle.md @@ -1,4 +1,4 @@ -# Options: ライフサイクル +# オプション: ライフサイクル :::info 参照 ライフサイクルフックの共通の使い方については、[ガイド - ライフサイクルフック](/guide/essentials/lifecycle.html) を参照してください