提交 | 用户 | 时间 | ||
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 | } |