| | |
| | | /*
|
| | | * @Date: 2019-11-21 14:21:14
|
| | | * @LastEditors: Sneed
|
| | | * @LastEditTime: 2024-01-17 22:32:34
|
| | | * @FilePath: /belleson-frontend/Users/mache/Documents/demo/mdc/src/store/getters.js
|
| | | */
|
| | | const getters = {
|
| | | sidebar: state => state.app.sidebar,
|
| | | device: state => state.app.device,
|
| | | mainHeight: state => state.app.mainHeight,
|
| | | mainWidth: state => state.app.mainWidth,
|
| | | // sidebar: state => state.app.sidebar,
|
| | | // device: state => state.app.device,
|
| | | // mainHeight: state => state.app.mainHeight,
|
| | | // mainWidth: state => state.app.mainWidth,
|
| | | token: state => state.user.token,
|
| | | workshopList: state => state.user.workshopList,
|
| | | deviceCategories: state => state.user.deviceCategories,
|
| | | userInfo: state => state.user.userInfo
|
| | | // deviceCategories: state => state.user.deviceCategories,
|
| | | userInfo: state => state.user.userInfo,
|
| | | userMenu: state => state.user.userMenu
|
| | | }
|
| | | export default getters
|