xm
2024-06-14 722af26bc6fec32bb289b1df51a9016a4935610f
提交 | 用户 | 时间
722af2 1 export default {
X 2   options(h, conf, key) {
3     const list = []
4     conf.__slot__.options.forEach(item => {
5       if (conf.__config__.optionType === 'button') {
6         list.push(<el-radio-button label={item.value}>{item.label}</el-radio-button>)
7       } else {
8         list.push(<el-radio label={item.value} border={conf.border}>{item.label}</el-radio>)
9       }
10     })
11     return list
12   }
13 }