How to add option Search field in Multiple select in VueJS

I’m usign the Select2 component from VueJS

import VueSelect2 from "vue-select2";

mmultiple select without search option

I want to add an option to search in the same list that is displayed, as the single select feature, not in the same input.

Why in the list? Because I will replace the selected items with a text “N options selected” and avoid searching from the input itself.

Finally, I looked for the documentation of the Select2 for VueJS, called “Searchable” but it didn’t work for me either.