index.ts 173 B

12345678910
  1. import { createStore } from 'vuex';
  2. import global from './global';
  3. const store = createStore({
  4. ...global,
  5. modules: {},
  6. });
  7. export * from './hook';
  8. export default store;