12345678910111213 |
- export default {
- token: state => state.app.token,
- isLogin: state => !!state.app.token,
- selectAddr: state => state.app.selectAddr,
- backgroundColor: state => state.app.backgroundColor,
- userInfo: state => state.app.userInfo || {},
- uid:state => state.app.uid,
- homeActive: state => state.app.homeActive,
- home: state => state.app.home,
- cartNum: state => state.indexData.cartNum,
- };
|