index.ts 159 B

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