File: //proc/self/root/home/arjun/projects/buyercall/buyercall/assets/vue/widgets/Channels/store/index.js
// import {createApp} from 'vue';
// import Vuex from 'vuex';
// import phonewidgetModule from '../store/phonewidget/index';
// import rootModule from '../store/root/index';
// import channelModule from './channels/index';
// Vue.use(Vuex);
// export default new Vuex.Store({
// modules: {
// source: channelModule,
// root: rootModule,
// phonewidget: phonewidgetModule,
// },
// });
import {createApp} from 'vue';
import { createStore } from 'vuex';
import phonewidgetModule from '../store/phonewidget/index';
import rootModule from '../store/root/index';
import channelModule from './channels/index';
const store = createStore({
modules: {
source: channelModule,
root: rootModule,
phonewidget: phonewidgetModule,
},
});
export default store;