未知操作:计数器不随 Vuex (VueJS) 递增

Unknown action : Counter not incrementing with Vuex (VueJS)

我正在使用以下代码使用 Vuex 在 store.js 中增加一个计数器。不知道为什么,当我点击增量按钮时,它说:

[vuex] unknown action type: INCREMENT

store.js

import Vuex from 'vuex'
import Vue from 'vue'
Vue.use(Vuex)
var store = new Vuex.Store({
  state: {
    counter: 0
  },
  mutations: {
    INCREMENT (state) {
      state.counter++;
    }
  }
})
export default store

IcrementButton.vue

<template>
  <button @click.prevent="activate">+1</button>
</template>

<script>
import store from '../store'

export default {
  methods: {
    activate () {
      store.dispatch('INCREMENT');
    }
  }
}
</script>

<style>
</style>

您必须在方法中使用 commit,因为您正在触发 mutation, not an action:

export default {
  methods: {
    activate () {
      store.commit('INCREMENT');
    }
  }
}

动作类似于突变,区别在于:

  • 不是改变状态,而是动作提交改变。
  • 行动可以 包含任意异步操作。