Is there a way to customize the select dropdown style in vue-tables2 table? I am trying to change the entire template of the dropdown, not just add CSS classes. My custom template includes additional elements like span and div tags that need to be incorporated into the 'records limit' dropdown on the table.
This is what my custom template looks like:
<div class="some_customclass">
<span class="second_customclass">{{text}}</span>
<select class="third_customclass">
<option>
{{ option.text }}
</option>
</select>
</div>
https://i.sstatic.net/xpWx0.png
Here is an example of how the customized dropdown should appear: