11 lines
283 B
JavaScript
Executable File
11 lines
283 B
JavaScript
Executable File
const getters = {
|
|
storeId: state => state.app.storeId,
|
|
platform: state => state.app.platform,
|
|
token: state => state.user.token,
|
|
userId: state => state.user.userId,
|
|
refereeId: state => state.app.refereeId,
|
|
appTheme: state => state.theme.appTheme
|
|
}
|
|
|
|
export default getters
|