JSFiddle - React, Tailwind, and code Playground
HTML
<div>
<label>itemsSource Only</label>
<wj-auto-complete items-source="countries">
</wj-auto-complete>
</div>
<div>
<label>itemsSource & cssMatch</label>
<wj-auto-complete items-source="countries" css-match="highlight">
</wj-auto-complete>
</div>
CSS
.highlight {
background-color: #ff0;
color: #000;
}