store.js 205 B

123456789101112
  1. import { createStore } from 'vuex';
  2. import { downloadStore } from 'client-base-v5/dist/client-base-v5.js';
  3. const store = createStore({
  4. modules: {
  5. downloadStore,
  6. },
  7. });
  8. export { store };