[Vuejs]-Vue JS/ superagent – TypeError: fn is not a function

0👍

Define the action like this:

GLOBAL_DATA: (commit, state) => {
    forms_store.get(null,  (result) => {
        commit('SET_FORMS', result)
    });
}

Leave a comment