Skip to content
On this page

vue3-intl-input Props

PropertyTypeDefault Value
firstValueobject
(alpha2Code, country, dialCode)
alpha2Code:'us' country:'United States' dialCode:'82'
inputInfoMsgstring''
contentTypestring
('modal', 'dropdown', 'dropdown-up')
'modal'
titlestring'Phone Number'
placeholderstring'Phone number'
searchPlaceholderstring'Search'
noDataTextstring'No Search Data....'
maxlengthstring'13'
effectbooleanfalse
clickCloseOutSidebooleanfalse
showTelInputbooleantrue
showDialCodebooleantrue
showSearchCountryInputbooleantrue
bindingModenumber (intlMode = 1, language = 2)1
countriesList[string][]
js
// functions

@sendInputValue="function"
const function = (val: object) => {
  console.log(val);
}


@sendCountryInfo="function"
const function = (info: object) => {
  console.log(info);
}