Created
October 9, 2018 06:14
-
-
Save idoshamun/ee53ef023305b3619f08c9c263ad7e1e to your computer and use it in GitHub Desktop.
Optimistic Offline-First Apps With Vuex
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const plugin = (store) => { | |
store.subscribe((mutation, state) => { | |
switch (mutation.type) { | |
case '...': | |
// dispatch request | |
break; | |
case '...': | |
// dispatch request | |
break; | |
default: | |
// Ignore default case | |
} | |
}); | |
}; | |
export default plugin; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment