Skip to content

Instantly share code, notes, and snippets.

@techwizzdom
Created July 9, 2021 10:01
Show Gist options
  • Save techwizzdom/b35170d253a0a20d9d20de8173d11ff7 to your computer and use it in GitHub Desktop.
Save techwizzdom/b35170d253a0a20d9d20de8173d11ff7 to your computer and use it in GitHub Desktop.
const userModule = {
namespaced: true,
state: () => ({}),
mutations: {},
actions: {
'SET_USER'() {},
'SET_USER_LOCATION'() {}
},
getters: {}
}
store.state.user['SET_USER']() // correct ✅
stote.state['SET_USER']() // wrong ❌
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment