Hi!
Using vue-instant-search
, I’m trying to prevent the first ever search (at page load)
I followed this recommendation from the doc, but unless I call helper.search()
- which is what I’m trying to prevent - none of the widgets will display
My code looks like
<ais-instant-search
:index-name="indexName"
:search-client="searchClient"
:search-function="searchFunction"
>
<ais-search-box>
<template #default="{ refine }">
<custom-search-box ... />
<template>
</ais-search-box>
<ais-hits />
</ais-instant-search>
Is there something I’m missing?
Thanks in advance