mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-11-03 14:03:18 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			354 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			354 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import * as types from './mutation-types'
 | 
						|
import Ls from '@/services/ls'
 | 
						|
 | 
						|
export default {
 | 
						|
  [types.BOOTSTRAP_COMPANIES] (state, companies) {
 | 
						|
    state.companies = companies
 | 
						|
    state.selectedCompany = companies[0]
 | 
						|
  },
 | 
						|
  [types.SET_SELECTED_COMPANY] (state, company) {
 | 
						|
    Ls.set('selectedCompany', company.id)
 | 
						|
    state.selectedCompany = company
 | 
						|
  }
 | 
						|
}
 |