mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 13:07:55 +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,
 | 
						|
  },
 | 
						|
});
 |