我有一个使用 v-select 组件的下拉菜单,并将我的选项设置为“美国”和“加拿大”。
我想将默认值 ( :value
) 设置为读取customer.country_code
,在这种情况下设置为“US”,但它没有预加载的选择。我在类似的情况下使用了 v-select,但不确定我在这里搞砸了什么。
<v-select
:options="['US', 'CA']"
:value="customer.country_code"
v-model="defaultCountry"
</v-select>
v-modeldefaultCountry
是这样启动的:
data() {
return {
defaultCountry: null
}
},
props: {
customer: { type: Object }
}
customer.country_code 是一个道具,因此我无法将 v-model 实例化为该值。