getters.js 392 B

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