yangys
2024-01-13 b8d63989635bc9fb58357f76333796e21409985b
1
2
3
4
5
6
7
8
9
10
11
const getters = {
  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
}
export default getters