我正在使用一个软件包,用于从here中选择国家和地区,以将其存储在数据库中。默认情况下,选择国家和地区将返回国家和地区代码。它可以与国家/地区代码配合使用,但我想获取完整的国家/地区名称。作者提到我们可以通过将countryName和regionName设置为true来获得国家名称和地区名称。但它在下面显示错误。
app.js:45836 [Vue警告]:监视程序“国家/地区”的回调错误:“ TypeError:无法读取未定义的属性'regions'” >
TypeError:无法读取未定义的属性“区域”
Vue组件
<country-select class="form-control" v-model="country" :country="country" topCountry="US" name="country" countryName />
<region-select class="form-control" v-model="region" :country="country" :region="region" name="region" regionName/>