getters.js 513 B

1234567891011121314
  1. export default {
  2. token: state => state.app.token,
  3. isLogin: state => !!state.app.token,
  4. backgroundColor: state => state.app.backgroundColor,
  5. userInfo: state => state.app.userInfo || {},
  6. uid: state => state.app.uid,
  7. homeActive: state => state.app.homeActive,
  8. home: state => state.app.home,
  9. chatUrl: state => state.app.chatUrl,
  10. systemPlatform: state => state.app.systemPlatform,
  11. openid: state => state.app.openid,
  12. productType: state => state.app.productType,
  13. deviceCode: state => state.app.deviceCode
  14. };