index.js 149 B

12345678910111213
  1. import Vue from 'vue'
  2. import Vuex from 'vuex'
  3. Vue.use(Vuex)
  4. const store = new Vuex.Store({
  5. state: {
  6. },
  7. mutations: {
  8. }
  9. })
  10. export default store