mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-31 05:31:10 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			281 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			281 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import * as types from './mutation-types'
 | |
| 
 | |
| export default {
 | |
|   [types.BOOTSTRAP_COMPANIES] (state, companies) {
 | |
|     state.companies = companies
 | |
|     state.selectedCompany = companies[0]
 | |
|   },
 | |
|   [types.SET_SELECTED_COMPANY] (state, company) {
 | |
|     state.selectedCompany = company
 | |
|   }
 | |
| }
 |