actions.js 141 B

1234567
  1. //test
  2. export const increment = ({commit}) => {
  3. commit('INCREMENT')
  4. }
  5. export const decrement = ({commit}) => {
  6. commit('DECREMENT')
  7. }