const getters = { model: state => state.app.model, systemInfo: state => state.app.systemInfo, safeArea: state => state.app.safeArea, headImgUrl: state => state.user.headImgUrl, nickName: state => state.user.nickName, userIdentity: state => state.user.userIdentity, userId: state => state.user.userId, unusedNum: state => state.coupon.unusedNum, expiredNum: state => state.coupon.expiredNum, usedNum: state => state.coupon.usedNum, kindCount: state => state.cart.kindCount } export default getters