index.js 564 Bytes
import Vue from 'vue';
import Vuex from 'vuex';
import {createApi} from 'create-api';
import storeYoho from './yoho';
import storeArticle from './article';
import plugin from './plugin';

Vue.use(Vuex);

export function createStore(context) {
  const store = new Vuex.Store({
    namespaced: true,
    modules: {
      yoho: storeYoho(),
      article: storeArticle()
    },
    strict: process.env.NODE_ENV !== 'production',
    plugins: [plugin]
  });

  const api = createApi(context, store);

  store.$api = api;
  store.$context = context;

  return store;
}