mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 12:08:01 +00:00
12 lines
191 B
JavaScript
12 lines
191 B
JavaScript
import Vue from 'vue';
|
|
import Vuex from 'vuex';
|
|
import globalConfig from 'shared/store/globalConfig';
|
|
|
|
Vue.use(Vuex);
|
|
|
|
export default new Vuex.Store({
|
|
modules: {
|
|
globalConfig,
|
|
},
|
|
});
|