Skip to content

Instantly share code, notes, and snippets.

@prawnsalad
Created February 20, 2019 14:07
Show Gist options
  • Save prawnsalad/ce4b1c5012e6f0c7d5162b2b70635a95 to your computer and use it in GitHub Desktop.
Save prawnsalad/ce4b1c5012e6f0c7d5162b2b70635a95 to your computer and use it in GitHub Desktop.
this.listen(this.$state, 'active.component.toggle', (component, props) => {
if (component === this.activeComponent) {
this.activeComponent = null;
} else if (component) {
this.activeComponentProps = props;
this.activeComponent = component;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment