Hi there, I was wondering if there is any exposed props or any way to change the way the default list items look when rendering.
What I am trying to achieve is each item showing a background color of the value of the data-item.
Essentially this
<combo-box
:data-items="sports"
>
<template #item="{ props }">
<div :style="`background: ${props.item}`">
{{ props.item }}
</div>
</template>
</combo-box>
Please ignore my question.