应该将v-model换成:value,因为v-model只能绑定一个值,无法绑定多个值
<select v-model="citys"> <option v-for="(item,index) in city" :value="item.val" v-text="item.name" ></option></select>