2019-10-29 07:20:54 +00:00
|
|
|
import Vue from 'vue';
|
|
|
|
import Vuex from 'vuex';
|
2019-11-25 18:40:27 +00:00
|
|
|
import appConfig from 'widget/store/modules/appConfig';
|
2020-01-09 07:36:40 +00:00
|
|
|
import contact from 'widget/store/modules/contact';
|
|
|
|
import conversation from 'widget/store/modules/conversation';
|
2020-02-05 05:57:22 +00:00
|
|
|
import agent from 'widget/store/modules/agent';
|
2019-10-29 07:20:54 +00:00
|
|
|
|
|
|
|
Vue.use(Vuex);
|
|
|
|
|
|
|
|
export default new Vuex.Store({
|
|
|
|
modules: {
|
2019-11-25 18:40:27 +00:00
|
|
|
appConfig,
|
2020-01-09 07:36:40 +00:00
|
|
|
contact,
|
2019-10-29 07:20:54 +00:00
|
|
|
conversation,
|
2020-02-05 05:57:22 +00:00
|
|
|
agent,
|
2019-10-29 07:20:54 +00:00
|
|
|
},
|
|
|
|
});
|