15815213711
2022-03-07 56f8b51c26bd1fb7e1fdc62acab5151cdf83c860
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import {State} from "@/store/index";
 
const getters = {
    sidebar: (state: State) => state.app.sidebar,
    size: (state: State) => state.app.size,
    device: (state: State) => state.app.device,
    //visitedViews: (state:State) => state.tagsView.visitedViews,
    //cachedViews: (state:State) => state.tagsView.cachedViews,
    token: (state: State) => state.user.token,
    avatar: (state: State) => state.user.avatar,
    name: (state: State) => state.user.name,
    roles: (state: State) => state.user.roles,
    permissions: (state: State) => state.user.permissions,
    permission_routes: (state: State) => state.permission.routes,
    topBarRouters: (state: State) => state.permission.topBarRouters,
    defaultRoutes: (state: State) => state.permission.defaultRoutes,
    sidebarRouters: (state: State) => state.permission.sidebarRouters,
}
 
export default getters