Skip to content
Filatov Dmitry edited this page Feb 18, 2018 · 14 revisions

setState

void setState(
    Object state
)

Sets the current state and schedules updating (except cases of calling it inside onInit and onChange lifecycle methods) of a component. The given state will be merged with the current state.

isMounted

Boolean isMounted()

Returns whether a component is mounted to the DOM.

update

void update()

Schedules update of a component.