12345678910111213141516171819202122232425262728293031 |
- import Vue from 'vue';
- import Vuex from 'vuex';
- import login from '@common/store/login';
- import chat from '@common/store/live/chat';
- import roomchat from '@common/store/live/room-chat';
- import apply from '@common/store/live/apply';
- import dock from '@common/store/live/dock';
- import news from '@common/store/live/news';
- 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: {
- roomchat,
- marketproduct,
- talentExperts,
- market,
- chat,
- dock,
- apply,
- news,
- login,
- },
- });
|