From ced79243798c7ced9c7b291ee5f28a161707273e Mon Sep 17 00:00:00 2001 From: hewIngram Date: Tue, 12 Jan 2021 17:52:36 +0000 Subject: [PATCH] docs: clarify deprecation message for find and findAll --- docs/api/wrapper/find.md | 1 + docs/api/wrapper/findAll.md | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/api/wrapper/find.md b/docs/api/wrapper/find.md index bdb1124b4..08e56e5bd 100644 --- a/docs/api/wrapper/find.md +++ b/docs/api/wrapper/find.md @@ -2,6 +2,7 @@ ::: warning Deprecation warning Using `find` to search for a Component is deprecated and will be removed. Use [`findComponent`](./findComponent.md) instead. +The `find` method will continue to work for finding elements using any valid [selector](../selectors.md). ::: Returns `Wrapper` of first DOM node or Vue component matching selector. diff --git a/docs/api/wrapper/findAll.md b/docs/api/wrapper/findAll.md index 072d48e8f..c2445887e 100644 --- a/docs/api/wrapper/findAll.md +++ b/docs/api/wrapper/findAll.md @@ -2,6 +2,7 @@ ::: warning Deprecation warning Using `findAll` to search for Components is deprecated and will be removed. Use `findAllComponents` instead. +The `findAll` method will continue to work for finding elements using any valid [selector](../selectors.md). ::: Returns a [`WrapperArray`](../wrapper-array/).