getters.js 469 B

12345678910111213
  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. };