store.js 221 B

123456789101112131415
  1. import Vue from 'vue'
  2. import Vuex from 'vuex'
  3. Vue.use(Vuex)
  4. export default new Vuex.Store({
  5. state: {
  6. count: 0
  7. },
  8. mutations: {
  9. increment (state) {
  10. state.count++
  11. }
  12. }
  13. })