You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
569 B
16 lines
569 B
5 years ago
|
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,
|
||
|
permissions: state => state.user.permissions,
|
||
|
permission_routes: state => state.permission.routes
|
||
|
}
|
||
|
export default getters
|