ais-instant-search
<ais-instant-search index-name="string" :search-client="object" // Optional parameters :stalled-search-delay="number" :routing="object" :class-names="object" />
About this widget
The ais-instant-search
widget is a wrapper that allows you to configure the credentials for the search. This component automatically provides the search state to all its children.
Note that every other Vue InstantSearch widgets must be wrapped under this one.
Examples
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<template>
<ais-instant-search
index-name="instant_search"
:search-client="searchClient"
>
<!-- Widgets -->
</ais-instant-search>
</template>
<script>
import algoliasearch from 'algoliasearch/lite';
export default {
data() {
return {
searchClient: algoliasearch(
'YourApplicationID',
'YourSearchOnlyAPIKey'
),
};
},
};
</script>
Props
index-name
|
type: string
Required
The main index in which to search. |
||
Copy
|
|||
search-client
|
type: object
Required
Provides a search client to |
||
Copy
|
|||
stalled-search-delay
|
type: number
default: 200
Optional
The amount of time before considering that the search is stalled. You can find more information in the slow network guide. |
||
Copy
|
|||
routing
|
type: object
Optional
Enables the routing feature to synchronize the search with the URL. More advanced usage is documented inside the routing guide. |
||
Copy
|
|||
class-names
|
type: object
default: {}
Optional
The CSS classes to override.
|
||
Copy
|
HTML output
1
2
3
<div class="ais-InstantSearch">
<!-- Widgets -->
</div>