antdv select checkbox设置默认选中,无法重新选择

<a-select mode="multiple" placeholder="请选择报考项目" :options="contractProjects" optionFilterProp="title"
v-model="form.projectid">
</a-select>

用v-model做了绑定,获取数据后给绑定值设置了值,也实现了默认选择,却不能再选择了,始终都是设置的那个值,需要在绑定对象中设置初始值便可以了。

form: {
projectid: []
},

posted @ 2021-04-09 13:56  教练我想打篮球  阅读(2042)  评论(0编辑  收藏  举报