mutations.js 82 B

12345
  1. export default {
  2. increment(state, amount = 1) {
  3. state.count += amount
  4. }
  5. }