I would like to change the default select dropdown style in vue-tables2 table. The problem is I'm not able to figure out how I can change the whole template of the dropdown to my custom template. I know how I can add css classes to the default dropdown but my custom dropdown requires to change the entire template.
My custom template is something like this and this should be placed on the 'records limit' dropdown on the table:
<div class="some_customclass">
<span class="second_customclass">{{text}}</span>
<select class="third_customclass">
<option>
{{ option.text }}
</option>
</select>
</div>
This is something like dropdown should look like: