getters.js 444 B

1234567891011121314
  1. export default {
  2. newCurrentRole: state => state.app.newCurrentRole,
  3. token: state => state.app.token,
  4. isLogin: state => !!state.app.token,
  5. selectAddr: state => state.app.selectAddr,
  6. backgroundColor: state => state.app.backgroundColor,
  7. userInfo: state => state.app.userInfo || {},
  8. uid:state => state.app.uid,
  9. homeActive: state => state.app.homeActive,
  10. home: state => state.app.home,
  11. cartNum: state => state.indexData.cartNum,
  12. };