mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-11-04 06:23:17 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			230 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			230 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import * as types from './mutation-types'
 | 
						|
 | 
						|
export default {
 | 
						|
  [types.SET_MOMENT_DATE_FORMAT] (state, data) {
 | 
						|
    state.momentDateFormat = data
 | 
						|
  },
 | 
						|
  [types.SET_LANGUAGE_FORMAT] (state, data) {
 | 
						|
    window.i18n.locale = data
 | 
						|
  }
 | 
						|
}
 |