Store.commit

提交 mutation。 详细介绍

参数说明
参数类型必填说明
typeString类型
payloadany载荷,传入的额外参数
示例
  1. // store.js
  2. import createStore from 'chameleon-store'
  3. const store = createStore({
  4. state: {
  5. count: 0
  6. },
  7. mutations: {
  8. increment (state) {
  9. state.count++
  10. }
  11. }
  12. })
  13. export default store
  14. // app.js
  15. store.commit('increment')