2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-05-17 02:29:37 +03:00

docs: removing duplicate search doc (#1591)

This commit is contained in:
René Eschke
2022-02-18 22:47:57 +01:00
committed by GitHub
parent 4a279f7ddd
commit ba4104117a
-18
View File
@@ -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);
```