A vue country select and a vue region select component that is very easy to use and the region select will update automatically depending on your country selected. They can also be used stand alone.
89
stars
84
forks
source link
Fix `Property "$i18n" was accessed during render` warning #59
The browser outputs a bunch of warnings due to $i18n being accessed during render, when i18n is not installed. Even when setting usei18n to false, the errors remain. This PR fixes the warnings by making sure the usei18n condition is verified first before trying to access $i18n.
The browser outputs a bunch of warnings due to
$i18n
being accessed during render, wheni18n
is not installed. Even when settingusei18n
tofalse
, the errors remain. This PR fixes the warnings by making sure theusei18n
condition is verified first before trying to access$i18n
.