when editing user information, how the element-ui2 form displays the previous company name (item.Name) of the user in the select selection box is normal in option, but opening the edit page selection box does not display the previous data.
<el-form-item label="" prop="owner_id">
<el-select v-model="editForm.owner_id" value-key="label" style="width: 100%;">
<el-option v-for="item in customers" :key="item.Id" v-bind:label="item.Name" v-bind:value="item.Id"></el-option>
</el-select>
</el-form-item>