* @param {Object} config
(config)
| 155 | * @param {Object} config |
| 156 | */ |
| 157 | construct(config) { |
| 158 | super.construct(config); |
| 159 | |
| 160 | let me = this; |
| 161 | |
| 162 | me.addDomListeners({ |
| 163 | click: me.onClick, |
| 164 | scope: me |
| 165 | }); |
| 166 | |
| 167 | me.createVdomEffect() |
| 168 | } |
| 169 | |
| 170 | /** |
| 171 | * Final. Should not be overridden. |
nothing calls this directly
no test coverage detected