mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-11-04 06:23:17 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			237 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			237 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import * as types from './mutation-types'
 | 
						|
 | 
						|
export default {
 | 
						|
  [types.SET_CUSTOMER_LISTS](state, customerList) {
 | 
						|
    state.customerList = customerList
 | 
						|
  },
 | 
						|
 | 
						|
  [types.SET_USER_LISTS](state, userList) {
 | 
						|
    state.userList = userList
 | 
						|
  },
 | 
						|
}
 |