16 lines
		
	
	
		
			435 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			435 B
		
	
	
	
		
			JavaScript
		
	
	
	
/*
 | 
						|
 * @Descripttion:
 | 
						|
 * @version:
 | 
						|
 * @Author: kBank
 | 
						|
 * @Date: 2022-10-24 10:45:39
 | 
						|
 */
 | 
						|
const getters = {
 | 
						|
  shopCarLength: state => state.user.shopCarLength,
 | 
						|
  smallCarLength: state => state.user.smallCarLength,
 | 
						|
  user: state => state.user.user,
 | 
						|
  priceSymbol: state => state.system.priceSymbol,
 | 
						|
  priceDecimal: state => state.system.priceDecimal,
 | 
						|
  priceSymbolVisible: state => state.system.priceSymbolVisible,
 | 
						|
}
 | 
						|
export default getters
 |