Files
xingmeng-uniapp/store/getters.js
PC-202306242200\Administrator c7cbc11d07 first commit
2026-03-28 23:07:10 +08:00

13 lines
433 B
JavaScript

export default {
token: state => state.app.token,
isLogin: state => !!state.app.token,
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,
chatUrl: state => state.app.chatUrl,
systemPlatform: state => state.app.systemPlatform,
productType: state => state.app.productType
};