BaseComponent.then method
BaseComponent › then
Official
Facilitates chaining.Signature:
then(cb: (component: this) => unknown): thisParameters:
| Parameter | Type | Description |
|---|---|---|
| cb | (component: this) => unknown | The callback to execute. |
Returns: this — The component instance.
Since: 0.9.7
Example:
component.then((x) => { console.log(x);});