el-select根据后端返回值,使el-option被选中
时间: 2023-06-01 08:03:06 浏览: 448
el-select-tree:ElementUI的el-select与el-tree结合
5星 · 资源好评率100%
可以通过设置el-select的v-model绑定一个变量,将后端返回的值赋给这个变量,然后通过el-option的value属性和v-model的值进行比较,如果相等,则设置el-option的selected属性为true,表示选中该选项。
示例代码:
```html
<template>
<div>
<el-select v-model="selectedOption">
<el-option v-for="option in options" :key="option.value" :value="option.value" :selected="option.value === selectedOption">
{{ option.label }}
</el-option>
</el-select>
</div>
</template>
<script>
export default {
data() {
return {
selectedOption: '', // 绑定v-model的变量
options: [
{ value: 'option1', label: '选项1' },
{ value: 'option2', label: '选项2' },
{ value: 'option3', label: '选项3' }
]
}
},
mounted() {
// 模拟后端返回值为'option2'
this.selectedOption = 'option2';
}
}
</script>
```
在mounted钩子中,将后端返回的值赋给selectedOption变量,此时el-select会自动选中value为'option2'的el-option。
阅读全文