()
| 117 | } |
| 118 | |
| 119 | createExampleComponent() { |
| 120 | return Neo.create({ |
| 121 | module : SplitButton, |
| 122 | iconCls: 'fa fa-home', |
| 123 | text : 'Hello World', |
| 124 | ui : 'ghost', |
| 125 | |
| 126 | handler: data => { |
| 127 | console.log('button click =>', data.component.id) |
| 128 | }, |
| 129 | |
| 130 | splitButtonHandler: data => { |
| 131 | console.log('split button click =>', data.component.id) |
| 132 | } |
| 133 | }) |
| 134 | } |
| 135 | } |
| 136 | |
| 137 | export default Neo.setupClass(MainContainer); |