Feature: Website SDK (#653)
Add SDK functions Co-authored-by: Sojan <sojan@pepalo.com>
This commit is contained in:
@@ -1,17 +1,21 @@
|
||||
import Vue from 'vue';
|
||||
import Vuex from 'vuex';
|
||||
import appConfig from 'widget/store/modules/appConfig';
|
||||
import contact from 'widget/store/modules/contact';
|
||||
import conversation from 'widget/store/modules/conversation';
|
||||
import agent from 'widget/store/modules/agent';
|
||||
import appConfig from 'widget/store/modules/appConfig';
|
||||
import contacts from 'widget/store/modules/contacts';
|
||||
import conversation from 'widget/store/modules/conversation';
|
||||
import conversationLabels from 'widget/store/modules/conversationLabels';
|
||||
import message from 'widget/store/modules/message';
|
||||
|
||||
Vue.use(Vuex);
|
||||
|
||||
export default new Vuex.Store({
|
||||
modules: {
|
||||
appConfig,
|
||||
contact,
|
||||
conversation,
|
||||
agent,
|
||||
appConfig,
|
||||
message,
|
||||
contacts,
|
||||
conversation,
|
||||
conversationLabels,
|
||||
},
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user