|
@@ -1,12 +1,18 @@
|
|
|
import Vue from 'vue';
|
|
|
import Vuex from 'vuex';
|
|
|
-import * as ustate from './user/state';
|
|
|
-import * as umutations from './user/mutations';
|
|
|
+import chat from '@common/store/live/chat';
|
|
|
+import apply from '@common/store/live/apply';
|
|
|
+import dock from '@common/store/live/dock';
|
|
|
+import market from '@common/store/market/market';
|
|
|
+import marketproduct from '@common/store/market/marketproduct';
|
|
|
+import talentExperts from '@common/store/market/talentExperts';
|
|
|
+import * as ustate from '@common/store/user/state';
|
|
|
+import * as umutations from '@common/store/user/mutations';
|
|
|
Vue.use(Vuex);
|
|
|
|
|
|
export default new Vuex.Store({
|
|
|
state: { ...ustate },
|
|
|
mutations: { ...umutations },
|
|
|
actions: {},
|
|
|
- modules: {},
|
|
|
+ modules: { marketproduct, talentExperts, market, chat, dock, apply },
|
|
|
});
|