Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update deprecation warning for find method in Japanese translation #2060

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/ja/api/wrapper/find.md
@@ -1,7 +1,8 @@
## find(selector)

::: warning Deprecation warning
コンポーネントの検索に `find` を使用することは非推奨となり、削除される予定です。代わりに `findComponent` を使用してください。
コンポーネントの検索に `find` を使用することは非推奨となり、削除される予定です。代わりに [`findComponent`](./findComponent.md) を使用してください。
コンポーネントではなく有効な [selector](../selectors.md) を引数にする場合は、引き続き `find` でコンポーネントを検索できます。
:::

最初の DOM ノードの Wrapper、またはセレクタで一致した Vue コンポーネントを返します。
Expand Down
1 change: 1 addition & 0 deletions docs/ja/api/wrapper/findAll.md
Expand Up @@ -2,6 +2,7 @@

::: warning Deprecation warning
`findAll` を使用してコンポーネントを検索することは非推奨となり、削除される予定です。代わりに `findAllComponents` を使用してください。
コンポーネントではなく有効な [selector](../selectors.md) を引数にする場合は、今後も `findAll` でコンポーネントを検索できます。
:::

[`WrapperArray`](../wrapper-array/)を返します。
Expand Down