Skip to content

Instantly share code, notes, and snippets.

@harshaktg
Created September 5, 2020 12:31
Show Gist options
  • Save harshaktg/fd9d0f09dcb11a2445b06ff0150d7fd8 to your computer and use it in GitHub Desktop.
Save harshaktg/fd9d0f09dcb11a2445b06ff0150d7fd8 to your computer and use it in GitHub Desktop.
Store MFE Single SPA
window.myapp = {
counter: 0,
incrementor: () => {
window.myapp.counter += 1;
window.dispatchEvent(new Event('onIncrement'));
},
decrementor: () => {
window.myapp.counter -= 1;
window.dispatchEvent(new Event('onDecrement'));
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment