mirror of
https://github.com/lingble/chatwoot.git
synced 2026-01-11 14:55:35 +00:00
Co-authored-by: Nithin David Thomas <webofnithin@gmail.com> Co-authored-by: Sojan Jose <sojan@pepalo.com>
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,
|
|
},
|
|
});
|