wyg
2024-06-14 a57dc2fae73d6e0dd315a120ca43ee685a6c7b7c
提交 | 用户 | 时间
a57dc2 1 export default {
W 2   options(h, conf, key) {
3     const list = []
4     conf.__slot__.options.forEach(item => {
5       list.push(<el-option label={item.label} value={item.value} disabled={item.disabled}></el-option>)
6     })
7     return list
8   }
9 }