* @returns {Neo.component.Base}
()
| 181 | * @returns {Neo.component.Base} |
| 182 | */ |
| 183 | createExampleComponent() { |
| 184 | return Neo.create({ |
| 185 | module : EffectButton, |
| 186 | badgeText: 'Badge', |
| 187 | flex : 'none', |
| 188 | handler : data => console.log('button click =>', data.component.id), |
| 189 | height : 50, |
| 190 | iconCls : 'fa fa-home', |
| 191 | style : {marginBottom: '1500px', marginTop: '500px'}, |
| 192 | text : 'Hello World', |
| 193 | ui : 'primary', |
| 194 | width : 150 |
| 195 | }) |
| 196 | } |
| 197 | |
| 198 | /** |
| 199 | * @param {String} config |