getters.js 347 B

123456789101112
  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. cartNum: state => state.indexData.cartNum,
  10. };