"><img> to paste in an image
Just add input event to your form elements and in trigger function make your search requests.
<input
type="text"
v-model="search"
@input="searchItems()"
class="form-control form-control-solid w-250px ps-15"
placeholder="Search Customers"
/>
const searchItems = () => {
};