Skip to content

Instantly share code, notes, and snippets.

@ignasbernotas
Created October 17, 2016 22:39
Show Gist options
  • Save ignasbernotas/16c86088b0b336e1c24f4b3cfc61af94 to your computer and use it in GitHub Desktop.
Save ignasbernotas/16c86088b0b336e1c24f4b3cfc61af94 to your computer and use it in GitHub Desktop.
Vuex initial data preloading plugin
import * as types from './../mutation-types'
export default function loadInitialState () {
return store => {
const actions = [
types.UPDATE_PROJECT_LIST
]
actions.forEach(action => store.dispatch(action))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment