Какой допустимый формат для: только стран, использующих VuePhoneNumberInput? Я пробую:
<VuePhoneNumberInput
v-model="profileRow.phone"
@update="onUpdate"
:only-countries="[ 'es', 'en', 'us' ]"
/>
и получаю ошибку консоли:
[Vue warn]: Error in nextTick: "Error: Key is undefined on item (keyField is 'null')"
found in
---> <RecycleScroller>
<CountrySelector>
<MazPhoneNumberInput>
Заглянув в исходные файлы, я пробовал:
<VuePhoneNumberInput
v-model="profileRow.phone"
@update="onUpdate"
:only-countries="[ ['Afghanistan', 'af', '93'], ['Albania', 'al', '355'] ]"
/>
, но получил ту же ошибку.
"vue": "^2.6.11",
"vue-phone-number-input": "^1.1.9",
Спасибо!