19 lines
560 B
JavaScript
19 lines
560 B
JavaScript
// const getters = {
|
|
// sidebar: state => state.app.sidebar,
|
|
// device: state => state.app.device,
|
|
// token: state => state.user.token,
|
|
// avatar: state => state.user.avatar,
|
|
// name: state => state.user.name
|
|
// }
|
|
// export default getters
|
|
|
|
const getters = {
|
|
sidebar: state => state.app.sidebar,
|
|
device: state => state.app.device,
|
|
token: state => state.user.token,
|
|
name: state => state.user.userInfo.username,
|
|
staffPhoto: state => state.user.userInfo.staffPhoto,
|
|
companyId: state => state.user.userInfo.companyId
|
|
}
|
|
export default getters
|