Skip to content

Instantly share code, notes, and snippets.

@nolimits4web
Created October 4, 2019 14:45
Show Gist options
  • Save nolimits4web/b3e543ddf9de74308a75a1963a473fd5 to your computer and use it in GitHub Desktop.
Save nolimits4web/b3e543ddf9de74308a75a1963a473fd5 to your computer and use it in GitHub Desktop.
this.$setState({foo: 'bar'});
this.$setState({john: 'doe'});
this.$tick(() => {
// DOM updated
});
// Or with callback
this.$setState({foo: 'bar'}, () => {
// DOM updated
});
// or with promise
this.$setState({foo: 'bar'}).then(() => {
// DOM updated
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment