初始化仓库
This commit is contained in:
11
store/getters.js
Normal file
11
store/getters.js
Normal file
@ -0,0 +1,11 @@
|
||||
export default {
|
||||
userInfo: (state) => state.app.userInfo || {},
|
||||
token: (state) => state.app.token,
|
||||
isLogin: (state) => !!state.app.token,
|
||||
cartNum: (state) => state.app.cartNum,
|
||||
inviteCode: (state) => state.app.userInfo.distribution_code || '',
|
||||
appConfig: (state) => state.app.config,
|
||||
site_statistic: (state) => state.app.config.site_statistic,
|
||||
sysInfo: (state) => state.app.sysInfo,
|
||||
cityInfo: (state) => state.city.cityInfo
|
||||
}
|
||||
Reference in New Issue
Block a user