1
const getters = {
2 3 4 5 6 7 8
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, visitedViews: (state) => state.tagsView.visitedViews, cachedViews: (state) => state.tagsView.cachedViews,
9 10 11
permission_routes: (state) => state.permission.routes } export default getters