element-ui select下拉框 设置默认值

参考于 carmen_shao的element-ui select下拉框默认值的问题
需要把el-select绑定的sPerforIndicator.id 和 el-option中的 :value="https://www.it610.com/article/item.id"的id值 设置成一样
注意: 类型也要保持一致
html

style="float: left">{{item.title}}-{{ item.id }} style="float: right; color: #8492a6; font-size: 13px">{{ typeof item.id }}

js
perforId 为 要设置的默认值,this.sPerforIndicator.id为下拉框绑定的值
this.sPerforIndicator.id = Number(perforId); // 将String转为Number console.log('原指标id类型:', typeof perforId); console.log('转换后的指标id:', this.sPerforIndicator.id, typeof this.sPerforIndicator.id);

element-ui select下拉框 设置默认值
文章图片

页面效果
【element-ui select下拉框 设置默认值】element-ui select下拉框 设置默认值
文章图片

    推荐阅读