From ba4104117af9d8e0c0411323648afca25fc5819b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Eschke?= Date: Fri, 18 Feb 2022 22:47:57 +0100 Subject: [PATCH] docs: removing duplicate `search` doc (#1591) --- docs/api/events.md | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/docs/api/events.md b/docs/api/events.md index a314206..7d4de5f 100644 --- a/docs/api/events.md +++ b/docs/api/events.md @@ -114,21 +114,3 @@ event is triggered. ```js this.$emit("search:focus"); ``` - -## `search` - -Triggered when the search text changes. - -```js -/** - * Anytime the search string changes, emit the - * 'search' event. The event is passed with two - * parameters: the search string, and a function - * that accepts a boolean parameter to toggle the - * loading state. - * - * @emits search - */ -this.$emit('search', newSearchString, toggleLoading); -``` -