[Vuejs]-How do you properly dispatch an action in vuex? Getting error [vuex] unknown action type in Chrome

0πŸ‘

βœ…

It looks like you never actually use the actions import in the vuex module. Try the following:

import actions from './actions.js'
export default {
actions
}

Leave a comment