vue element ui - el-select 下拉框 作者:马育民 • 2024-04-21 13:45 • 阅读:10071 # 介绍 官方文档: https://element.eleme.cn/#/zh-CN/component/select ### el-option 标签 ``` ``` - label:显示的文字 - value:对应的值 # 例子 ``` ``` data数据: ``` shareForm = { validity:'3' // 默认选中 value是3的选项,注意类型是字符串,不能是数字 } ``` methods: ``` change(e){ console.log(e) } ``` 原文出处:https://malaoshi.top/show_1IX7YBI9mh20.html