| 1234567891011121314151617 |
- const getters = {
- token: state => state.user.token,
- avatar: state => state.user.avatar,
- name: state => state.user.name,
- isLogin: state => state.user.isLogin,
- userInfo: state => state.user.userInfo,
- headHref: state => state.user.headHref,
- ipconfig: state => state.user.ipconfig,
- WXCode: state => state.user.WXCode,
- allScorce: state => state.user.allScorce,
- nameId: state => state.user.nameId,
- openId: state => state.user.openId,
- oid: state => state.user.oid,
- form: state => state.user.form
- }
- export default getters
|