export default { options(h, conf, key) { const list = [] conf.__slot__.options.forEach(item => { if (conf.__config__.optionType === 'button') { list.push({item.label}) } else { list.push({item.label}) } }) return list } }