“Vuex verwenden Status in Aktion” Code-Antworten

Vuex verwenden Status in Aktion

// If you want to use state in action when using Vuex store
// all you need is to add 'state' next to commit in curly bracket '{ }'

// Exapmle:

someAction({commit, state}){
            axios.get("https://myUrl.com/" + state.version )
            .then((response) => {
                commit('champions', {
                    champions: response.data.data
                })
            })
            .catch(function (error) {
                console.log(error);
            })
        }
Repulsive Raven

Vue Store Access Status in Aktionen

actions: {
  actionName ({ commit, state }, payload) {
    console.log(state)
  }
}
Krushn

Ähnliche Antworten wie “Vuex verwenden Status in Aktion”

Fragen ähnlich wie “Vuex verwenden Status in Aktion”

Weitere verwandte Antworten zu “Vuex verwenden Status in Aktion” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen