My vue component :
<v-container>
<v-row>
<v-col cols="12" sm="6" md="3">
<vue-tel-input v-model="phone" v-on:country-changed="countryChanged"></vue-tel-input>
</v-col>
</v-row>
</v-container>
<v-btn
color="success"
@click="submit"
>
submit
</v-btn>
My codepen : https://codepen.io/positivethinking639/pen/XWWBXMW?editors=1011
I want display search like this :
So make it easier for users to choose the country code
How can I do it?