Currently, I'm utilizing Laravel Scout with Algolia as the driver. Vue is being used on the front end and I've experimented with the Vue instant search package, which has proven to be very effective.
The challenge I am encountering involves customizing it to fit the in-app styles that we have established.
Refinement Section
This specific component is what I am trying to modify. While attempting to override the classes as demonstrated in the Styling Section, I found that it doesn't meet my needs since I require additional tags and attributes within.
<ais-refinement-list attribute-name="categories.title" inline-template>
<div class="column w-1/5">
Hello
</div>
</ais-refinement-list>
I am aware that I can begin by creating an inline template like this, but what I am still unsure of is how to obtain the values for refinements in order to create checkboxes and, ultimately, how to send them back to the component once they have been selected. Any assistance would be greatly appreciated.