mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-07-10 21:17:01 +08:00
Co-authored-by: Nithin David Thomas <[email protected]> Co-authored-by: Sojan Jose <[email protected]>
12 lines
199 B
JavaScript
Executable File
12 lines
199 B
JavaScript
Executable File
import Vue from 'vue';
|
|
import Vuex from 'vuex';
|
|
import conversation from 'widget/store/modules/conversation';
|
|
|
|
Vue.use(Vuex);
|
|
|
|
export default new Vuex.Store({
|
|
modules: {
|
|
conversation,
|
|
},
|
|
});
|