join_admin/src/store/getters.js
Lukas Bachschwell 051d407f0f
All checks were successful
continuous-integration/drone/push Build is passing
coins for bot view
2020-01-03 20:43:54 +01:00

17 lines
603 B
JavaScript

const getters = {
sidebar: state => state.app.sidebar,
size: state => state.app.size,
device: state => state.app.device,
visitedViews: state => state.tagsView.visitedViews,
cachedViews: state => state.tagsView.cachedViews,
token: state => state.user.token,
avatar: state => state.user.avatar,
name: state => state.user.name,
introduction: state => state.user.introduction,
roles: state => state.user.roles,
permission_routes: state => state.permission.routes,
errorLogs: state => state.errorLog.logs,
currentCoins: state => state.settings.currentCoins
}
export default getters