iamstevendao / vue-tel-input

International Telephone Input with Vue
https://iamstevendao.com/vue-tel-input/
MIT License
818 stars 342 forks source link

Search Box placeholder #445

Closed Cadeniuc closed 7 months ago

Cadeniuc commented 8 months ago

Hi guys, How I can to change the placeholder for dropdown search box ? 2024-03-03 12 45 22

Thanks

cyhnkckali commented 8 months ago

@iamstevendao help plase!!!

iamstevendao commented 7 months ago

hi guys, you can customise its style using vti__search_box class, or hide it using dropdownOptions.showSearchBox: false

<input
            v-if="dropdownOptions.showSearchBox"
            class="vti__input vti__search_box"
            aria-label="Search by country name or country code"
            :placeholder="sortedCountries.length ? sortedCountries[0].name : ''"
            type="text"
            v-model="data.searchQuery"
            @click.stop
        />
Cadeniuc commented 7 months ago

hi @iamstevendao, I meant to change placeholder not to hide it(

shubhamChaudhariRanium commented 4 months ago

hi @iamstevendao, I meant to change the placeholder not hide it(

Hey @Cadeniuc, has the issue been fixed? I'm facing the same problem where the placeholder isn't overriding.