Skip to content

Instantly share code, notes, and snippets.

@hibuno
Created January 27, 2018 02:44
Show Gist options
  • Save hibuno/dc701a2c5cbdbd6aa342fefd80a38cb6 to your computer and use it in GitHub Desktop.
Save hibuno/dc701a2c5cbdbd6aa342fefd80a38cb6 to your computer and use it in GitHub Desktop.
Create vuex store
import Vuex from 'vuex'
const createStore = () => {
return new Vuex.Store({
state: {
article: {}
},
mutations: {
setArticle (state, data) {
state.article = data
}
}
})
}
export default createStore
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment