9 lines
		
	
	
		
			286 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			286 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| export default {
 | |
|   userInfo: state => state.app.userInfo || {},
 | |
|   token: state => state.app.token,
 | |
|   isLogin: state => !!state.app.token,
 | |
|   cartNum: state => state.app.cartNum,
 | |
|   inviteCode: state => state.app.userInfo.distribution_code || "",
 | |
|   appConfig: state => state.app.config
 | |
| };
 | 
