I am trying to modify the output of an InstantSearch widget for Vue.
In the documentation (https://www.algolia.com/doc/api-reference/widgets/hits/vue/#customize-the-ui) it says that using the scope-slot it will override the complete DOM output of the widget:
But it does not seem to be the case here. This is my code below using slot with a simple <tr>
and <td>
elements:
Instead of rendering a <tr>
with <td>
inside of it, I see here:
- A div with a class of ais-Hits
- A nested ol with a class of ais-Hits-list
- A nested li with a class of ais-Hits-item
The output is this:
If I go to inspect element and I delete the elements I mentioned above (see how div, ol and li are deleted):
Then the result is correct:
Am I doing something wrong? Shouldn't slot override the DOM output and leave the rest to the developer to style?
Any help would be much appreciated!
You have to use the
default
slots rather thanitem
. You'll have full control over the render.Here is an example on CodeSandbox.
The
ais-Hits
will always wrap the default slot with adiv
(see GitHub for the explaination). The only alternative to avoid this issue is to create your own widget with the mixincreateWidgetMixin
:Here is an example on CodeSandbox.